41 lines
685 B
Vue
41 lines
685 B
Vue
<script setup>
|
|
import TopSearchBar from './topbar/TopSearchBar.vue';
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="top-bar">
|
|
<div class="left">
|
|
<span class="top-bar-title"></span>
|
|
</div>
|
|
<div class="center">
|
|
<TopSearchBar></TopSearchBar>
|
|
</div>
|
|
<div class="right"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.top-bar {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
min-height: 40px;
|
|
width: 100%;
|
|
background-color: var(--color-background-light);
|
|
display: flex;
|
|
}
|
|
|
|
.left, .right {
|
|
flex: 1;
|
|
}
|
|
|
|
.right {
|
|
text-align: right;
|
|
}
|
|
|
|
.top-bar-title {
|
|
padding: 10px;
|
|
display: flex;
|
|
font-weight: bold;
|
|
}
|
|
</style> |