Evo.Auth/apps/web/components/Login.module.scss
2022-11-27 12:55:26 +03:00

45 lines
736 B
SCSS

$layout-breakpoint-desktop: 768px;
@mixin center-elements {
display: flex;
justify-content: center;
align-items: center;
}
.wrapper {
@include center-elements;
min-height: 100vh;
background-color: white;
}
.login {
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: white;
margin: 0;
height: 250px;
width: 100%;
padding: 25px 10px;
img {
display: block;
margin-left: auto;
margin-right: auto;
}
}
@media (min-width: 768px) {
.login {
box-shadow: 4px 5px 17px -11px rgba(0, 0, 0, 0.75);
height: 320px;
width: 380px;
padding: 25px 30px;
}
.wrapper {
min-height: calc(100vh - 100px);
background-color: transparent;
}
}