Files
2023-08-17 13:05:51 +03:30

49 lines
751 B
SCSS

.activation-page {
display: flex;
justify-content: center;
align-items: center;
.s1 {
flex-basis: 100%;
padding: 150px 0;
.msgBox,
.content {
width: 100%;
max-width: 600px;
@extend %defaultBorderRadius;
@include boxShadow(0 5px 10px rgba(#000, 0.5));
margin: 0 auto;
text-align: center;
}
.msgBox {
padding: 10px 25px;
&.success {
background: #37d200;
}
&.err {
background: tomato;
}
h2 {
color: #fff;
font-size: 20px;
}
}
.content {
background: #fff;
margin-top: 30px;
padding: 25px;
.btn {
display: inline-block;
margin-top: 10px;
}
}
}
}