You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
291 B

.dank-toast {
position: absolute;
left: 1ch;
bottom: 4ch;
padding: 1ch 2ch;
border-radius: 1ch;
transition: all 0.2s ease-in-out;
&.error {
background: #b40303;
opacity: 1;
}
&.good {
background: #009b46;
opacity: 1;
}
&.off {
opacity: 0;
}
}