diff options
| author | Henry Jameson <me@hjkos.com> | 2022-04-04 19:41:09 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-04-04 19:41:09 +0300 |
| commit | 71863061c691df7f59cf4be283a3e0772d485378 (patch) | |
| tree | a48abdfeb7a4e585f84a97f22d11938a8fff5a65 /src/App.vue | |
| parent | 0e83ced25b612250d8126778288b7b44f3b91dfc (diff) | |
fixed tons of stuff, at least it looks normalish on desktop
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/App.vue b/src/App.vue index dc2359f3..71de2a36 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,28 +7,28 @@ id="app_bg_wrapper" class="app-bg-wrapper" /> - <MobileNav class="navbar" v-if="isMobileLayout" /> - <DesktopNav class="navbar" v-else /> - <div class="app-bg-wrapper app-container-wrapper" /> + <MobileNav v-if="isMobileLayout" /> + <DesktopNav v-else /> <div id="content" class="app-layout container" + :class="{ '-reverse': reverseLayout }" > <div class="underlay"/> <div + id="sidebar" class="column -scrollable -mini mobile-hidden" - :style="sidebarAlign" > <user-panel /> - <div v-if="!isMobileLayout"> + <template v-if="!isMobileLayout"> <nav-panel /> <instance-specific-panel v-if="showInstanceSpecificPanel" /> <features-panel v-if="!currentUser && showFeaturesPanel" /> <who-to-follow-panel v-if="currentUser && suggestionsEnabled" /> <notifications v-if="currentUser" /> - </div> + </template> </div> - <div class="column main"> + <div id="main-scroller" class="column main"> <div v-if="!currentUser" class="login-hint panel panel-default" |
