diff options
| author | taehoon <th.dev91@gmail.com> | 2019-03-28 15:50:53 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-05-03 11:40:06 -0400 |
| commit | 0bb82478229b19adae998b9a32b05bcaa4ed0a4f (patch) | |
| tree | b9f35f450ff042d3ef7eab6384fe169a4b0b188c /src/App.vue | |
| parent | e97f8a4728bdc224b683242ca446c23a4e4ba5d1 (diff) | |
fix double scrollbar display bug in mobile
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index cb7e8d78..229bf62b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,5 @@ <template> - <div id="app" v-bind:style="bgAppStyle"> + <div id="app" v-bind:style="bgAppStyle" v-bind:class="{ mobile: isMobile }"> <div class="app-bg-wrapper" v-bind:style="bgStyle"></div> <MobileNav v-if="isMobileLayout" /> <nav v-else class='nav-bar container' @click="scrollToTop()" id="nav"> |
