summaryrefslogtreecommitdiff
path: root/web/src/components/toolbar/index.css
diff options
context:
space:
mode:
authorJosh Kingsley <josh@joshkingsley.me>2025-11-23 19:27:57 +0200
committerJosh Kingsley <josh@joshkingsley.me>2025-11-23 19:27:57 +0200
commit602145c956bb594ca0d0e10601cc4ad1a71cf70d (patch)
treed9f9980bd2054cff5819d01379f5c1c55f8eb66d /web/src/components/toolbar/index.css
parentc2a6efb1b761014a90d90373cad47a14054af40b (diff)
feat: integrate web and doc packages
Diffstat (limited to 'web/src/components/toolbar/index.css')
-rw-r--r--web/src/components/toolbar/index.css48
1 files changed, 0 insertions, 48 deletions
diff --git a/web/src/components/toolbar/index.css b/web/src/components/toolbar/index.css
deleted file mode 100644
index 653c326..0000000
--- a/web/src/components/toolbar/index.css
+++ /dev/null
@@ -1,48 +0,0 @@
-@layer components {
- ntv-toolbar {
- display: flex;
- border-radius: 99999px;
- background: var(--color-neutral-900);
- width: min-content;
- }
-
- ntv-toolbar > section {
- display: flex;
- gap: 0.25rem;
- padding: 0.325rem;
- }
-
- ntv-toolbar button {
- border-radius: 99999px;
- background: var(--color-neutral-800);
- padding: 0 0.5rem;
- height: 1.25rem;
- color: white;
- font-weight: 600;
- font-size: 0.75rem;
- }
-
- ntv-toolbar button:hover {
- background: var(--color-green-400);
- color: var(--color-neutral-900);
- }
-
- ntv-toolbar button[data-icon] {
- display: flex;
- justify-content: center;
- align-items: center;
- aspect-ratio: 1;
- height: 1.25rem;
- }
-
- ntv-toolbar input {
- border: 1px solid var(--color-neutral-700);
- border-radius: 4px;
- background: var(--color-neutral-900);
- width: 2.5rem;
- height: 1.25rem;
- color: white;
- font-size: 0.75rem;
- text-align: center;
- }
-}