47 lines
770 B
SCSS
47 lines
770 B
SCSS
/* You can add global styles to this file, and also import other style files */
|
|
|
|
.drag-active * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--tui-background-neutral-2-pressed);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: var(--tui-background-base);
|
|
}
|
|
|
|
*, *::before, *::after {
|
|
font-family: "Onest", serif !important;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Onest";
|
|
src: url("/Onest-Regular.ttf")
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Onest";
|
|
src: url("/Onest-ExtraBold.ttf");
|
|
font-weight: bold;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Onest";
|
|
src: url("/Onest-SemiBold.ttf");
|
|
font-weight: 600;
|
|
}
|