24 lines
589 B
CSS
24 lines
589 B
CSS
@import 'tailwindcss/base';
|
|
@import 'tailwindcss/components';
|
|
@import 'tailwindcss/utilities';
|
|
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
|
|
|
|
html {
|
|
/*background-image: url(src/lib/img/bg.png);*/
|
|
/*background-size: cover;*/
|
|
scroll-behavior: smooth;
|
|
font-family: JetBrains Mono;
|
|
overflow: hidden;
|
|
}
|
|
@media screen and (max-width: 540px) {
|
|
html {
|
|
overflow: scroll;
|
|
}
|
|
}
|
|
body::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
body {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
} |