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