Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Fix options on dark themes
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoColomb authored Sep 21, 2020
1 parent a9ed1d8 commit 009e4a0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions source/options.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
body {
min-width: 430px; /* Required to size the Browser Action popup */
background: white;
color: black;
}

@media (prefers-color-scheme: dark) {
body {
background: black;
color: white;
}
}

:root {
Expand Down

0 comments on commit 009e4a0

Please sign in to comment.