46 lines
760 B
Vue
46 lines
760 B
Vue
<script setup>
|
|
import FetchStatus from './FetchStatus.vue';
|
|
|
|
|
|
</script>
|
|
<template>
|
|
<div class="status-bar">
|
|
<div class="left">
|
|
<FetchStatus></FetchStatus>
|
|
</div>
|
|
<div class="center">
|
|
</div>
|
|
<div class="right">
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.status-bar {
|
|
flex-grow: 0;
|
|
flex-shrink: 0;
|
|
min-height: 24px;
|
|
max-height: 24px;
|
|
width: 100%;
|
|
background-color: var(--color-background-light);
|
|
display: flex;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.left, .right {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.right {
|
|
text-align: right;
|
|
}
|
|
|
|
.top-bar-title {
|
|
padding: 10px;
|
|
display: flex;
|
|
font-weight: bold;
|
|
}
|
|
</style> |