Files
my-links/styles/login.module.scss

45 lines
845 B
SCSS

@import "keyframes.scss";
@import "colors.scss";
.wrapper {
height: 100%;
width: 480px;
display: flex;
gap: 20px;
justify-content: center;
flex-direction: column;
animation: fadein 250ms both;
& .providers {
height: fit-content;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
& button {
width: 100%;
}
}
& .error {
height: fit-content;
width: 100%;
text-align: center;
font-style: italic;
font-size: 0.9em;
color: $red;
background-color: $light-red;
padding: 10px;
border-radius: 3px;
animation: fadein 250ms both;
}
}
@media (max-width: 680px) {
.login {
width: 100%;
}
}