Second commit

This commit is contained in:
2026-04-20 20:30:42 +02:00
parent 9f2578f7d2
commit 254a645c25
1072 changed files with 4491 additions and 17 deletions

View File

@@ -0,0 +1,46 @@
<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(--top-bar-background-color);
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>