From 523018e324baa499f65e9dda6ba98d6ca2786ae2 Mon Sep 17 00:00:00 2001 From: Brittany Feenstra Date: Sun, 10 Oct 2021 08:12:21 -0700 Subject: [PATCH] Design System: Normalize Box-Shadow: None (#9312) --- packages/design-system/src/components/input/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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}; }