Skip to content

Commit

Permalink
Design System: Normalize Box-Shadow: None (#9312)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrittanyIRL authored Oct 10, 2021
1 parent 3389384 commit 523018e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/design-system/src/components/input/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand All @@ -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};
}
Expand Down

0 comments on commit 523018e

Please sign in to comment.