style:优化内置滚动条样式

This commit is contained in:
妙码生花 2024-04-01 01:02:33 +08:00
parent 54e2ad6d97
commit 95a826321e

View File

@ -37,7 +37,6 @@
/* dialog滚动条-s */
.el-overlay-dialog,
.ba-scroll-style {
scrollbar-width: none;
&::-webkit-scrollbar {
width: 5px;
height: 5px;
@ -54,6 +53,13 @@
}
}
}
@supports not (selector(::-webkit-scrollbar)) {
.el-overlay-dialog,
.ba-scroll-style {
scrollbar-width: thin;
scrollbar-color: #c8c9cc #eaeaea;
}
}
/* dialog滚动条-e */
/* 小屏设备 el-radio-group 样式优化-s */