This repository has been archived on 2022-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Frontend/src/styles.css
2021-01-02 22:13:10 +01:00

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;
}