forked from Berry-Dash/launcher
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:
27
src/Globals.css
Normal file
27
src/Globals.css
Normal 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];
|
||||
}
|
||||
Reference in New Issue
Block a user