feat: Hide scrollbar by setting width and height to 0 in global styles

This commit is contained in:
2024-11-19 12:15:27 +02:00
parent 782af69049
commit 34964eb1cc

View File

@@ -18,3 +18,8 @@ body,
@apply bg-white;
@apply dark:bg-black;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}