From 3f65baf503bee677bde70535525ae514d0585d69 Mon Sep 17 00:00:00 2001
From: xachary <179740385@qq.com>
Date: Fri, 24 Nov 2023 00:04:34 +0800
Subject: [PATCH] fix: scrollbar is obscured (#3331)
---
src/design/index.less | 3 +--
src/layouts/default/content/index.vue | 12 +++++++++---
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/src/design/index.less b/src/design/index.less
index a7c056bf..0242ff71 100644
--- a/src/design/index.less
+++ b/src/design/index.less
@@ -23,8 +23,7 @@ body {
position: relative;
width: 100%;
height: 100%;
- overflow: visible;
- overflow-x: hidden;
+ overflow: hidden;
&.color-weak {
filter: invert(80%);
diff --git a/src/layouts/default/content/index.vue b/src/layouts/default/content/index.vue
index 87144aaf..5edfc0d1 100644
--- a/src/layouts/default/content/index.vue
+++ b/src/layouts/default/content/index.vue
@@ -1,6 +1,8 @@