diff --git a/packages/design-system/src/components/input/index.js b/packages/design-system/src/components/input/index.js index 2c86b38d0ea2..df468bee7f22 100644 --- a/packages/design-system/src/components/input/index.js +++ b/packages/design-system/src/components/input/index.js @@ -106,6 +106,7 @@ export const BaseInput = styled.input( background-color: inherit; border: none; outline: none; + box-shadow: none; color: ${theme.colors.fg.primary}; ${themeHelpers.expandPresetStyles({ @@ -129,7 +130,9 @@ export const BaseInput = styled.input( color: ${theme.colors.fg.disable}; } } - + :focus { + box-shadow: none; + } :active:enabled { color: ${theme.colors.fg.primary}; }