diff options
| author | Josh Kingsley <josh@joshkingsley.me> | 2025-10-26 14:40:10 +0200 |
|---|---|---|
| committer | Josh Kingsley <josh@joshkingsley.me> | 2025-10-26 14:40:10 +0200 |
| commit | 6ae3218e2dd130c085074a0d13d156bdba99716f (patch) | |
| tree | 64073c4b1361549ecd1c355b97a8f5010781d762 /web/src/components/toolbar/index.css | |
| parent | 0324660a26684a5382b2c6c18cd0a4e9f0169631 (diff) | |
feat(web): adjust colors
Diffstat (limited to 'web/src/components/toolbar/index.css')
| -rw-r--r-- | web/src/components/toolbar/index.css | 36 |
1 files changed, 15 insertions, 21 deletions
diff --git a/web/src/components/toolbar/index.css b/web/src/components/toolbar/index.css index 3f78671..b580fbf 100644 --- a/web/src/components/toolbar/index.css +++ b/web/src/components/toolbar/index.css @@ -1,41 +1,35 @@ ntv-toolbar { display: flex; - border-radius: 4px; - background: var(--color-neutral-800); + border-radius: 99999px; + background: var(--color-neutral-900); width: min-content; } ntv-toolbar > section { display: flex; - gap: 0.5rem; - padding: 0.5rem; + gap: 0.25rem; + padding: 0.325rem; } -ntv-toolbar button[data-variant="menu"] { - border-radius: 4px; - background: var(--color-neutral-700); - padding: 0 0.625rem; - height: 1.5rem; +ntv-toolbar button { + border-radius: 99999px; + background: var(--color-neutral-800); + padding: 0 0.5rem; + height: 1.25rem; color: white; font-size: 0.75rem; } +ntv-toolbar button:hover { + background: var(--color-neutral-700); +} + ntv-toolbar button[data-variant="icon"] { display: flex; justify-content: center; align-items: center; - border-radius: 4px; - background: var(--color-neutral-700); - padding: 0.125rem 0.625rem; aspect-ratio: 1; - height: 1.5rem; - color: white; - font-weight: 600; - font-size: 0.75rem; -} - -ntv-toolbar button:hover { - background: var(--color-neutral-600); + height: 1.25rem; } ntv-toolbar input { @@ -43,7 +37,7 @@ ntv-toolbar input { border-radius: 4px; background: var(--color-neutral-900); width: 2.5rem; - height: 1.5rem; + height: 1.25rem; color: white; font-size: 0.75rem; text-align: center; |
