homepage/src/styles/globals.css

59 lines
981 B
CSS
Raw Normal View History

2022-08-24 10:44:35 +03:00
@tailwind base;
@tailwind components;
@tailwind utilities;
#__next {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
html,
2022-08-24 10:44:35 +03:00
body {
2022-09-24 15:13:14 +03:00
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;
2022-08-24 10:44:35 +03:00
}