28 lines
320 B
SCSS
28 lines
320 B
SCSS
|
@import '../variables';
|
||
|
|
||
|
.main{
|
||
|
width: min-content;
|
||
|
color: white;
|
||
|
text-align: center;
|
||
|
font-weight: 900;
|
||
|
|
||
|
& > hr{
|
||
|
border: 1px solid white;
|
||
|
}
|
||
|
& > *{
|
||
|
margin: 2%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.fail{
|
||
|
color: $red;
|
||
|
& > hr{
|
||
|
border-color: $red;
|
||
|
}
|
||
|
}
|
||
|
.success{
|
||
|
color: $green;
|
||
|
& > hr{
|
||
|
border-color: $green;
|
||
|
}
|
||
|
}
|