|
10 | 10 | <body> |
11 | 11 | <div x-data> |
12 | 12 | <template x-if="$store.sidebar"> |
13 | | - <div id="left-panel" class="panel" x-data :class="{'hidden': !$store.sidebar.isOpen}"> |
14 | | - <x-extension id="sidebar-start"></x-extension> |
15 | | - <!--Sidebar upper elements--> |
16 | | - <div class="left-panel-top no-scrollbar"> |
17 | | - <!-- Top Section: Header Icons + Quick Actions --> |
18 | | - <x-component path="sidebar/top-section/sidebar-top.html"></x-component> |
19 | | - <!-- Chats List --> |
20 | | - <div class="config-section" id="chats-section"> |
21 | | - <x-component path="sidebar/chats/chats-list.html"></x-component> |
| 13 | + <div class="sidebar-shell"> |
| 14 | + <x-component path="sidebar/top-section/header-icons.html"></x-component> |
| 15 | + <div id="left-panel" class="panel" x-data :class="{'hidden': !$store.sidebar.isOpen}"> |
| 16 | + <x-extension id="sidebar-start"></x-extension> |
| 17 | + <!--Sidebar upper elements--> |
| 18 | + <div class="left-panel-top no-scrollbar"> |
| 19 | + <!-- Top Section: Quick Actions --> |
| 20 | + <x-component path="sidebar/top-section/sidebar-top.html"></x-component> |
| 21 | + <!-- Chats List --> |
| 22 | + <div class="config-section" id="chats-section"> |
| 23 | + <x-component path="sidebar/chats/chats-list.html"></x-component> |
| 24 | + </div> |
| 25 | + |
| 26 | + <!-- Tasks List --> |
| 27 | + <div class="config-section" id="tasks-section"> |
| 28 | + <x-component path="sidebar/tasks/tasks-list.html"></x-component> |
| 29 | + </div> |
22 | 30 | </div> |
23 | | - |
24 | | - <!-- Tasks List --> |
25 | | - <div class="config-section" id="tasks-section"> |
26 | | - <x-component path="sidebar/tasks/tasks-list.html"></x-component> |
| 31 | + <!--Sidebar lower elements--> |
| 32 | + <div class="left-panel-bottom"> |
| 33 | + <x-component path="sidebar/bottom/sidebar-bottom.html"></x-component> |
27 | 34 | </div> |
| 35 | + <x-extension id="sidebar-end"></x-extension> |
28 | 36 | </div> |
29 | | - <!--Sidebar lower elements--> |
30 | | - <div class="left-panel-bottom"> |
31 | | - <x-component path="sidebar/bottom/sidebar-bottom.html"></x-component> |
32 | | - </div> |
33 | | - <x-extension id="sidebar-end"></x-extension> |
34 | 37 | </div> |
35 | 38 | </template> |
36 | 39 | </div> |
|
85 | 88 | /* Critical for allowing flex children to shrink */ |
86 | 89 | overflow: hidden; |
87 | 90 | justify-content: space-between; |
88 | | - margin-top: 6rem; |
| 91 | + margin-top: 6.5rem; |
89 | 92 | padding: var(--spacing-md) var(--spacing-md) 0 var(--spacing-md); |
90 | 93 | } |
91 | 94 |
|
|
0 commit comments