summaryrefslogtreecommitdiff
path: root/src/styles
diff options
context:
space:
mode:
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;
+ }
}