Spaces:
Paused
Paused
File size: 1,132 Bytes
8d1819a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<html>
<head>
<script type="module">
import { store } from "/components/sidebar/bottom/sidebar-bottom-store.js";
</script>
</head>
<body>
<div x-data>
<template x-if="$store.sidebarBottom">
<div class="sidebar-bottom-wrapper">
<!-- Preferences Panel -->
<x-component path="sidebar/bottom/preferences/preferences-panel.html"></x-component>
<!-- Version Info -->
<div class="version-info">
<span id="a0version" x-text="$store.sidebarBottom.versionLabel"></span>
</div>
</div>
</template>
</div>
<style>
/* Sidebar bottom wrapper */
.sidebar-bottom-wrapper {
display: flex;
flex-direction: column;
flex-shrink: 0;
}
/* Version label area */
.version-info {
line-height: 0.8rem;
position: relative;
margin: 0 var(--spacing-md) 1rem var(--spacing-md);
padding-top: 10px;
border-top: 1px solid var(--color-border);
}
#a0version {
color: var(--color-text);
opacity: 0.7;
font-size: 0.7rem;
user-select: all;
}
</style>
</body>
</html>
|