Skip to content

Commit 37eb110

Browse files
committed
Update button styles
1 parent 6c8c637 commit 37eb110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Button.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ export const Button = ({ children, primary }) => (
44
<button
55
style={{
66
display: 'inline-block',
7-
padding: '0 2em',
7+
padding: '0 3em',
88
height: 50,
99
borderRadius: 50,
1010
borderStyle: 'solid',
1111
borderWidth: 1,
1212
borderColor: primary ? '#00c4a7' : '#adadad',
1313
background: primary ? '#00c4a7' : '#fff',
1414
color: primary ? '#fff' : '#363636',
15-
font: 'normal 16px/50px sans-serif',
15+
font: 'normal 14px/50px sans-serif',
1616
textRendering: 'optimizeLegibility',
1717
}}
1818
>

0 commit comments

Comments
 (0)