diff --git a/frontend/src/styles/globals.css b/frontend/src/styles/globals.css index a0e8da5..67d75c8 100644 --- a/frontend/src/styles/globals.css +++ b/frontend/src/styles/globals.css @@ -12,6 +12,19 @@ font-family: 'Bricolage Grotesque', system-ui, sans-serif; } + /* Number inputs: drop the native spinner arrows app-wide — they don't fit the + dark glass UI. Values are typed; type=number still gives the numeric keypad + on mobile and browser validation. */ + input[type='number']::-webkit-outer-spin-button, + input[type='number']::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; + } + input[type='number'] { + -moz-appearance: textfield; + appearance: textfield; + } + /* Atmosphere: faint graph-paper grid + citron signal glow + film grain */ #root { position: relative;