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 { .toast {
position: fixed; position: fixed;
bottom: 0; bottom: -30px;
right: 20px; right: 25px;
font-size: 12px; font-size: 11px;
padding: 10px; padding: 6px;
color: #fff; color: #fff;
transition: opacity 0.4s; transition: bottom 0.3s;
opacity: 0; opacity: 0.6;
border-radius: 5px 5px 0 0;
} }
.toast.show { .toast.show {
opacity: 0.8; bottom: 0;
} }
.dark #saved-indicator { .toast#saved-indicator {
color: lawngreen; background-color: green;
} }
#saved-indicator { .toast#update-indicator {
color: green; background-color: orangered;
}
.dark #update-indicator {
color: orange;
}
#update-indicator {
color: orangered;
} }