We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df9f865 commit dd59b92Copy full SHA for dd59b92
src/Button.js
@@ -4,15 +4,15 @@ export const Button = ({ children, primary }) => (
4
<button
5
style={{
6
display: 'inline-block',
7
- padding: '0 2em',
+ padding: '0 3em',
8
height: 50,
9
borderRadius: 50,
10
borderStyle: 'solid',
11
borderWidth: 1,
12
borderColor: primary ? '#00c4a7' : '#adadad',
13
background: primary ? '#00c4a7' : '#fff',
14
color: primary ? '#fff' : '#363636',
15
- font: 'normal 16px/50px sans-serif',
+ font: 'normal 14px/50px sans-serif',
16
textRendering: 'optimizeLegibility',
17
}}
18
>
0 commit comments