fix: hide scrollbar for layout shift when using the theme selector

This commit is contained in:
javayhu 2025-04-30 21:24:15 +08:00
parent 04fc9ca757
commit 9c28c451e4

View File

@ -372,3 +372,17 @@ body {
--primary-foreground: var(--color-amber-50);
}
}
/**
* Hide scrollbar for layout shift when using the theme selector
*/
/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
* {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}