Sub-message was hard to read for non-error toasts

- Non-error = pink background, Error = dark red. The former provides bad contrast for --color-text-subtitle.

- Use opacity instead of a hardcoded color.
This commit is contained in:
infinite-persistence 2022-03-24 16:08:40 +08:00
parent f1ea0b20dd
commit c970176386
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0

View file

@ -79,8 +79,8 @@
}
.snack-bar__messageText--sub {
font-size: var(--font-xsmall);
color: var(--color-text-subtitle);
font-size: var(--font-small);
opacity: 0.8;
}
.snack-bar__close {