diff --git a/packages/berlin/src/components/input/Input.styled.tsx b/packages/berlin/src/components/input/Input.styled.tsx index e883b719..9275c181 100644 --- a/packages/berlin/src/components/input/Input.styled.tsx +++ b/packages/berlin/src/components/input/Input.styled.tsx @@ -11,4 +11,15 @@ export const StyledInput = styled.input` &::placeholder { color: var(--color-gray); } + + input::-webkit-outer-spin-button, + input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; + } + + input[type='number'] { + -moz-appearance: textfield; /* Firefox */ + appearance: textfield; /* Standard property */ + } `;