Merge pull request #10930 from dataease/pr@dev-v2@fix_scroll

fix(数据大屏): 部分浏览器预览存在滚动条问题
This commit is contained in:
王嘉豪 2024-07-12 14:56:03 +08:00 committed by GitHub
commit 4daa4668a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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;
}