diff options
Diffstat (limited to 'styles/ui.css')
-rw-r--r-- | styles/ui.css | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/styles/ui.css b/styles/ui.css index cd9f461..6dbc388 100644 --- a/styles/ui.css +++ b/styles/ui.css @@ -5,6 +5,7 @@ box-sizing: border-box; } +html.dark .button { color: var(--foreground); } .button { background-color: var(--accent); color: var(--gray-900); @@ -64,20 +65,16 @@ transform: translate(-50%, 0%) rotate(0deg); } -.dialogbox { - width: 392px; -} - -.dialogbox > .title { - margin-bottom: var(--spacing-large); -} - +.dialogbox { width: 392px; } +.dialogbox > .title { margin-bottom: var(--spacing-large); } .dialogbox .icon.close { top: 25px; right: 25px; cursor: pointer; } +html.dark .dialogbox { background-color: var(--gray-700); } + .searchBar { overflow: hidden; } |