cash-stacks/frontend/src/scss/status.scss
Elijah Lucian 8c40f30286 👷‍♀️
2021-04-14 20:04:37 -06:00

26 lines
327 B
SCSS

.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;
}
}