12 lines
189 B
CSS
12 lines
189 B
CSS
|
body {
|
||
|
margin-left: 30%;
|
||
|
margin-right: 30%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: space-around;
|
||
|
}
|
||
|
|
||
|
#root {
|
||
|
width: 720px;
|
||
|
}
|