diff options
| author | Henry Jameson <me@hjkos.com> | 2022-04-07 15:11:23 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-04-07 15:11:23 +0300 |
| commit | b5ded67c0608724fe23be15e346dd6842819635f (patch) | |
| tree | 6dab9bacf427db768d8e399c4718cdec7d7371f8 /src/App.vue | |
| parent | d3d219f15d4bac88f58d4fd0fed6f798b81cca82 (diff) | |
options to enable scrollbars and disable sticky headers
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/App.vue b/src/App.vue index 70084538..243a3314 100644 --- a/src/App.vue +++ b/src/App.vue @@ -13,10 +13,10 @@ <div id="content" class="app-layout container" - :class="[{ '-reverse': reverseLayout }, '-' + layoutType]" + :class="[{ '-reverse': reverseLayout, '-no-sticky-headers': noSticky }, '-' + layoutType]" > <div class="underlay"/> - <div id="sidebar" class="column -scrollable"> + <div id="sidebar" class="column -scrollable" :class="{ '-show-scrollbar': showScrollbars }"> <user-panel /> <template v-if="layoutType !== 'mobile'"> <nav-panel /> @@ -40,7 +40,7 @@ </div> <router-view /> </div> - <div id="notifs-column" class="column -scrollable"/> + <div id="notifs-column" class="column -scrollable" :class="{ '-show-scrollbar': showScrollbars }"/> <media-modal /> </div> <shout-panel |
