adjust toast styling again

This commit is contained in:
Ryan Peters 2023-01-31 21:19:09 -05:00
parent 3e1ac28905
commit e5684fb993

View File

@ -42,31 +42,24 @@ textarea {
.toast {
position: fixed;
bottom: 0;
right: 20px;
font-size: 12px;
padding: 10px;
bottom: -30px;
right: 25px;
font-size: 11px;
padding: 6px;
color: #fff;
transition: opacity 0.4s;
opacity: 0;
transition: bottom 0.3s;
opacity: 0.6;
border-radius: 5px 5px 0 0;
}
.toast.show {
opacity: 0.8;
bottom: 0;
}
.dark #saved-indicator {
color: lawngreen;
.toast#saved-indicator {
background-color: green;
}
#saved-indicator {
color: green;
}
.dark #update-indicator {
color: orange;
}
#update-indicator {
color: orangered;
.toast#update-indicator {
background-color: orangered;
}