14 lines
219 B
SCSS
14 lines
219 B
SCSS
|
.main {
|
||
|
// background-color: red;
|
||
|
margin: 0 auto;
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
& > div{
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|