chore: change ways style

This commit is contained in:
engigu
2026-01-28 20:48:09 +08:00
parent a33a520d3b
commit 313e22cc25
3 changed files with 150 additions and 63 deletions
+16
View File
@@ -151,4 +151,20 @@
background: transparent !important;
border: none !important;
}
/* 自定义滚动条样式 */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: color-mix(in srgb, var(--muted-foreground), transparent 70%);
border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
background: color-mix(in srgb, var(--muted-foreground), transparent 50%);
}
}