style: hide scrollbar

This commit is contained in:
codytseng
2025-10-20 09:57:49 +08:00
parent fd342e1cad
commit 6090c01965

View File

@@ -33,6 +33,16 @@
user-select: none;
}
/* hide scrollbar */
html, body {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE 和 Edge */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
display: none; /* Chrome、Safari、Edge */
}
.clickable {
cursor: pointer;
transition: background-color 0.2s ease;