👷‍♀️

This commit is contained in:
Elijah Lucian
2021-04-14 20:04:37 -06:00
parent 5b4726bee8
commit 8c40f30286
24 changed files with 891 additions and 90 deletions
+25
View File
@@ -0,0 +1,25 @@
.status {
position: absolute;
left: 1ch;
bottom: 4ch;
padding: 1ch 2ch;
border-radius: 1ch;
transition: all 0.2s ease-in-out;
&.error {
color: #ffffff;
background: #b40303;
opacity: 1;
}
&.good {
color: #ffffff;
background: #009b46;
opacity: 1;
}
&.off {
opacity: 0;
}
}