button.css
1 .storybook-button { 2 display: inline-block; 3 cursor: pointer; 4 border: 0; 5 border-radius: 3em; 6 font-weight: 700; 7 line-height: 1; 8 font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 9 } 10 .storybook-button--primary { 11 background-color: #555ab9; 12 color: white; 13 } 14 .storybook-button--secondary { 15 box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px inset; 16 background-color: transparent; 17 color: #333; 18 } 19 .storybook-button--small { 20 padding: 10px 16px; 21 font-size: 12px; 22 } 23 .storybook-button--medium { 24 padding: 11px 20px; 25 font-size: 14px; 26 } 27 .storybook-button--large { 28 padding: 12px 24px; 29 font-size: 16px; 30 }