mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-19 17:56:42 +08:00
9 lines
184 B
SCSS
9 lines
184 B
SCSS
/* H5的时候,隐藏滚动条 */
|
||
::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0 !important;
|
||
height: 0 !important;
|
||
-webkit-appearance: none;
|
||
background: transparent;
|
||
}
|