19 lines
286 B
SCSS
19 lines
286 B
SCSS
.index {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
.title{
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
}
|
|
.loginWrapper {
|
|
background-color: #fff;
|
|
padding: 15px 20px;
|
|
border-radius: 6px;
|
|
width: 350px;
|
|
}
|