feat(style): add no-scrollbar class to hide scrollbars for a cleaner UI

This commit is contained in:
2026-01-04 00:02:30 -06:00
parent b569371e3d
commit 3ba7de9df7

View File

@@ -99,3 +99,12 @@ select.input-field option {
.dark .file-input::file-selector-button {
@apply bg-blue-500 hover:bg-blue-400 text-white;
}
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}