Files
mixtape/zero.Web/App/Components/header-bar.vue
T
2020-04-06 23:48:28 +02:00

50 lines
702 B
Vue

<template>
<div class="ui-header-bar">
<h2 v-if="title" class="ui-header-bar-title" v-localize="title"></h2>
<slot></slot>
</div>
</template>
<script>
export default {
name: 'uiHeaderBar',
props: {
title: {
type: String
},
},
mounted ()
{
},
methods: {
}
}
</script>
<style lang="scss">
@import 'Sass/Core/all';
.ui-header-bar
{
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 80px;
padding: 0 var(--padding);
}
.ui-header-bar-title
{
@extend %font;
margin: 0;
font-size: var(--font-size-l);
font-weight: 700;
}
</style>