fix(数据大屏): 部分浏览器预览存在滚动条问题

This commit is contained in:
wangjiahao 2024-07-12 14:55:21 +08:00
parent 182cce161c
commit 3534003823
2 changed files with 6 additions and 2 deletions

View File

@ -403,10 +403,14 @@ defineExpose({
overflow-x: hidden;
overflow-y: auto;
position: relative;
::-webkit-scrollbar {
div::-webkit-scrollbar {
width: 0px !important;
height: 0px !important;
}
div {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}
.fix-button {

View File

@ -509,7 +509,7 @@ defineExpose({
height: 100%;
overflow-y: auto !important;
position: relative;
::-webkit-scrollbar {
div::-webkit-scrollbar {
width: 0px !important;
height: 0px !important;
}