From bc4345bb378a31b767d655698501ced62d9b7cfd Mon Sep 17 00:00:00 2001 From: Peter Olu Date: Sun, 24 Apr 2022 16:40:34 +0100 Subject: [PATCH] hide scroll on ds-main --- src/views/dashboard/Edit.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/views/dashboard/Edit.vue b/src/views/dashboard/Edit.vue index ad4b8c95..f8a3da76 100644 --- a/src/views/dashboard/Edit.vue +++ b/src/views/dashboard/Edit.vue @@ -98,4 +98,11 @@ export default defineComponent({ .ds-main { overflow: auto; } +.ds-main::-webkit-scrollbar { + display: none; +} +.ds-main{ + -ms-overflow-style: none; + scrollbar-width: none; +}