fix:no-scrollbar

This commit is contained in:
yujiangping
2026-03-20 18:28:55 +08:00
parent b1b53f6b1d
commit 9f947a3395
2 changed files with 15 additions and 6 deletions

View File

@@ -2,4 +2,13 @@
.rb-border-t { border-top: 1px solid #DFE4ED; }
.rb-border-r { border-right: 1px solid #DFE4ED; }
.rb-border-b { border-bottom: 1px solid #DFE4ED; }
.rb-border-l { border-left: 1px solid #DFE4ED; }
.rb-border-l { border-left: 1px solid #DFE4ED; }
/* 隐藏滚动条但保留滚动功能 */
div {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE/Edge */
}
div::-webkit-scrollbar {
display: none; /* Chrome/Safari/Opera */
}