|
@@ -9,3 +9,39 @@ html {
|
|
body {
|
|
body {
|
|
// overscroll-behavior-y: contain;
|
|
// overscroll-behavior-y: contain;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+::-webkit-scrollbar {
|
|
|
|
+ width: 5px;
|
|
|
|
+ /* 滚动条宽度为0 */
|
|
|
|
+ height: 5px;
|
|
|
|
+ /* 滚动条高度为0 */
|
|
|
|
+ display: block;
|
|
|
|
+ /* 滚动条隐藏 */
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+::-webkit-scrollbar {
|
|
|
|
+ width: 5px !important;
|
|
|
|
+ /* 滚动条宽度为0 */
|
|
|
|
+ height: 5px !important;
|
|
|
|
+ /* 滚动条高度为0 */
|
|
|
|
+ display: block !important;
|
|
|
|
+ /* 滚动条隐藏 */
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+::-webkit-scrollbar-track-piece {
|
|
|
|
+ background-color: rgba(0, 0, 0, 0.2) !important;
|
|
|
|
+ -webkit-border-radius: 6px !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+::-webkit-scrollbar-thumb:vertical {
|
|
|
|
+ height: 5px !important;
|
|
|
|
+ background-color: rgba(125, 125, 125, 0.7) !important;
|
|
|
|
+ -webkit-border-radius: 6px !important;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+::-webkit-scrollbar-thumb:horizontal {
|
|
|
|
+ width: 5px !important;
|
|
|
|
+ background-color: rgba(125, 125, 125, 0.7) !important;
|
|
|
|
+ -webkit-border-radius: 6px !important;
|
|
|
|
+}
|