25 lines
315 B
CSS
25 lines
315 B
CSS
html {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
|
|
height: inherit;
|
|
width: inherit;
|
|
|
|
margin: 0;
|
|
background: #00000000;
|
|
}
|
|
|
|
#root {
|
|
height: inherit;
|
|
width: inherit;
|
|
display: flex;
|
|
padding: 0 !important;
|
|
font-family: 'IBM Plex Sans', sans-serif;
|
|
}
|