25 lines
408 B
SCSS
Vendored
25 lines
408 B
SCSS
Vendored
// Auth box
|
|
|
|
.auth {
|
|
max-width: 350px;
|
|
width: 100%;
|
|
background-color: $light;
|
|
margin: 3rem auto;
|
|
border-radius: 1rem;
|
|
box-shadow: 1px 1px 2px $grey;
|
|
|
|
.title-page {
|
|
font-size: 2.4rem;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
color: $fontTitle;
|
|
}
|
|
}
|
|
|
|
.logo {
|
|
text-align: center;
|
|
font-size: 2.8rem;
|
|
color: $dark;
|
|
font-weight: bold;
|
|
}
|