Show a list when opening download menu, change button styles, switch from scss to tailwindcss, add downloads button to sidebar and more

This commit is contained in:
2025-07-19 16:06:34 -07:00
parent 5a4f76fc71
commit 1349f779a0
9 changed files with 268 additions and 196 deletions

27
src/Globals.css Normal file
View File

@@ -0,0 +1,27 @@
@import 'tailwindcss';
@import '@fontsource/roboto';
body {
font-family: 'Roboto', sans-serif;
@apply bg-[#131313] text-white select-none;
}
.button {
@apply bg-[#0a6ec8] hover:bg-[#1361ad] rounded-md cursor-pointer text-[16px] py-1.5 px-3 transition-colors duration-[0.25s];
}
::-webkit-scrollbar {
@apply w-2;
}
::-webkit-scrollbar-track {
@apply bg-[#1f1f1f];
}
::-webkit-scrollbar-thumb {
@apply bg-[#555] w-1 rounded-lg;
}
::-webkit-scrollbar-thumb:active {
@apply bg-[#888];
}