mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-17 21:31:54 +00:00
30 lines
520 B
SCSS
30 lines
520 B
SCSS
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
position: absolute;
|
|
bottom: 0;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
overflow-x: hidden;
|
|
color: $fontColor;
|
|
font-family: 'Roboto Mono', monospace;
|
|
font-size: $mediumFontSize;
|
|
margin: 0;
|
|
background-color: $background;
|
|
text-rendering: geometricPrecision;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body>div:first-child {
|
|
display: flex;
|
|
min-height: 100%;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
} |