You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/src/styles/globals.css

59 lines
981 B

@tailwind base;
@tailwind components;
@tailwind utilities;
#__next {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
html,
body {
font-family: Manrope, "Manrope-Fallback", Arial, sans-serif;
overflow: hidden;
}
#page_wrapper {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
overflow: overlay;
}
.light #page_container {
scrollbar-color: rgb(var(--color-300)) rgb(var(--color-200));
}
.dark #page_container {
scrollbar-color: rgb(var(--color-600)) rgb(var(--color-700));
}
.light ::-webkit-scrollbar {
width: 0.75em;
}
.light ::-webkit-scrollbar-track {
background-color: rgb(var(--color-200));
}
.light ::-webkit-scrollbar-thumb {
background-color: rgb(var(--color-300));
border-radius: 0.25em;
}
.dark ::-webkit-scrollbar {
width: 0.75em;
}
.dark ::-webkit-scrollbar-track {
background-color: rgb(var(--color-700));
}
.dark ::-webkit-scrollbar-thumb {
background-color: rgb(var(--color-600));
border-radius: 0.25em;
}