feat: hide scroll bar

This commit is contained in:
shinya
2025-06-24 21:23:01 +08:00
parent a340c7b958
commit 4cfd0ee678

View File

@@ -88,6 +88,16 @@ body {
}
}
/* 隐藏所有滚动条(兼容 WebKit、Firefox、IE/Edge */
* {
-ms-overflow-style: none; /* IE & Edge */
scrollbar-width: none; /* Firefox */
}
*::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}
/* 隐藏 Artplayer 顶部提示 */
.art-notice {
display: none !important;