19 lines
276 B
CSS
19 lines
276 B
CSS
body {
|
|
position: relative;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#root {
|
|
position: relative;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
:root {
|
|
--item-border-size: 0.1rem;
|
|
--item-border-radius: 0.5rem;
|
|
}
|