24 lines
433 B
SCSS
24 lines
433 B
SCSS
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap");
|
|
@import "./Design.scss";
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
position: absolute;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 100%;
|
|
background-color: $bg-color;
|
|
color: $main-color;
|
|
font-family: "Roboto", sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
#root {
|
|
height: 100%;
|
|
}
|