ESPTrainer built with Meteor and React

Actions.scss 398B

123456789101112131415161718192021222324
  1. @import "shadow";
  2. .actions {
  3. display: flex;
  4. justify-content: center;
  5. flex-wrap: wrap;
  6. margin: 20px 0;
  7. button {
  8. background: white;
  9. border: 1px solid black;
  10. @include shadow();
  11. margin: 10px;
  12. padding: 10px 20px;
  13. text-transform: uppercase;
  14. width: 100px;
  15. &:active { box-shadow: none; }
  16. &:focus { outline: none; }
  17. &:hover { cursor: pointer; }
  18. }
  19. }