aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-03-28 15:50:53 -0400
committertaehoon <th.dev91@gmail.com>2019-05-03 11:40:06 -0400
commit0bb82478229b19adae998b9a32b05bcaa4ed0a4f (patch)
treeb9f35f450ff042d3ef7eab6384fe169a4b0b188c /src/App.scss
parente97f8a4728bdc224b683242ca446c23a4e4ba5d1 (diff)
fix double scrollbar display bug in mobile
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss
index 6d16c7c9..c72529ac 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -839,3 +839,14 @@ nav {
.vb.vb-dragging-phantom > .vb-dragger > .vb-dragger-styler {
opacity: .5;
}
+
+// Disable vuebar and use native scrollbar in mobile device
+#app.mobile {
+ .vb-content {
+ width: 100% !important;
+ padding-right: 0 !important;
+ }
+ .vb-dragger {
+ display: none;
+ }
+}