Skip to content

Commit

Permalink
move padding top/bottom to base
Browse files Browse the repository at this point in the history
  • Loading branch information
smhigley committed Oct 27, 2022
1 parent 33c2cf0 commit 9a59600
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ const useSelectStyles = makeStyles({
cursor: 'pointer',
flexGrow: 1,
maxWidth: '100%',
paddingBottom: 0,
paddingTop: 0,

':focus': {
outlineWidth: '2px',
Expand All @@ -143,26 +145,20 @@ const useSelectStyles = makeStyles({

small: {
height: fieldHeights.small,
paddingBottom: 0,
paddingLeft: paddingLeft.small,
paddingRight: paddingRight.small,
paddingTop: 0,
...typographyStyles.caption1,
},
medium: {
height: fieldHeights.medium,
paddingBottom: 0,
paddingLeft: paddingLeft.medium,
paddingRight: paddingRight.medium,
paddingTop: 0,
...typographyStyles.body1,
},
large: {
height: fieldHeights.large,
paddingBottom: 0,
paddingLeft: paddingLeft.large,
paddingRight: paddingRight.large,
paddingTop: 0,
...contentSizes[400],
},
outline: {
Expand Down

0 comments on commit 9a59600

Please sign in to comment.