24 lines
435 B
CSS
24 lines
435 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
* {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
body, html {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
:host{
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
background-color: transparent;
|
|
width: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(255, 255, 255);
|
|
border-radius: 8px;
|
|
} |