forked from Kieran/snort
1
0
Fork 0

fix: issue #671 unreadable profile pop-ups

This commit is contained in:
James McGauran 2023-11-09 12:51:12 +00:00
parent ffda4b1a43
commit 8014d84b3d
2 changed files with 12 additions and 0 deletions

View File

@ -22,3 +22,9 @@
.light .spinner-button:hover {
box-shadow: rgba(0, 0, 0, 0.2) 0 1px 3px;
}
@media (prefers-color-scheme: light) {
.spinner-button > span {
color: black;
}
}

View File

@ -9,3 +9,9 @@
color: white;
padding: 8px 12px;
}
@media (prefers-color-scheme: light) {
.profile-card > div {
color: black;
}
}