mirror of
https://github.com/billsonnn/nitro-react.git
synced 2025-02-17 09:22:36 +01:00
34 lines
815 B
SCSS
34 lines
815 B
SCSS
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Condensed:wght@300;400;500&display=swap');
|
|
@import '../node_modules/animate.css/animate.css';
|
|
@import './assets/styles';
|
|
|
|
html,
|
|
body {
|
|
font-family: 'Ubuntu Condensed', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
$chatinput-zindex: 80;
|
|
$toolbar-zindex: 70;
|
|
$rightside-zindex: 69;
|
|
$toolbar-memenu-zindex: 60;
|
|
$roomtools-zindex: 50;
|
|
$context-menu-zindex: 40;
|
|
$infostand-zindex: 30;
|
|
$chat-zindex: 20;
|
|
$highscore-zindex: 19;
|
|
|
|
@import './utils/Styles';
|
|
@import './App';
|
|
@import './hooks/Styles';
|
|
@import './views/Styles';
|