Skip to content

Commit ebc2e09

Browse files
authored
fix: button sizing (#83)
1 parent b6a3074 commit ebc2e09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Button.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ const Button = styled.button`
2323
padding: ${({ theme }) => `${theme.sizes.base} ${theme.sizes.x2l}`};
2424
2525
${media.sm`
26-
font-size: ${({ theme }) => theme.fontSize.lg};
27-
padding: ${({ theme }) => `${theme.sizes.lg} ${theme.sizes.x2l}`};
26+
font-size: ${({ theme }) => theme.fontSize.sm};
27+
padding: ${({ theme }) => `${theme.sizes.sm} ${theme.sizes.xl}`};
2828
`}
2929
`
3030
: css`

0 commit comments

Comments
 (0)