Buttons

Add the following file:

  1. $ touch _buttons.scss

Add to application.scss under the forms import

  1. @import "buttons";

Open and add the following code:

  1. button {
  2. @extend %default-inputs;
  3. -webkit-appearance: none;
  4. background: orange;
  5. color: white;
  6. border-radius: em(3);
  7. padding: 1em;
  8. }