summaryrefslogtreecommitdiff
path: root/src/styles
diff options
context:
space:
mode:
authorSolstice <solstice@local>2026-06-09 01:02:30 -0700
committerSolstice <solstice@local>2026-06-09 01:02:30 -0700
commit4e2d978eb5fc9457d5b913bc10faf1266e6dcda4 (patch)
tree835f8cdc1160fe979a39e0bdad0c5179cc49820d /src/styles
parentf43f549ffbe3074977116c9f35aa7064d6a4bd95 (diff)
chore: final polish and preparation for release
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/global.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/styles/global.css b/src/styles/global.css
index e4a0d96..007c653 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -75,4 +75,24 @@
#root {
min-height: 100vh;
}
+
+ button,
+ input,
+ select {
+ transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
+ }
+
+ button:focus-visible,
+ input:focus-visible,
+ select:focus-visible {
+ outline: none;
+ border-color: var(--brass);
+ box-shadow: var(--shadow-brass);
+ }
+
+ button:disabled,
+ input:disabled,
+ select:disabled {
+ cursor: not-allowed;
+ }
}