ESPTrainer built with Meteor and React

Board.scss 432B

1234567891011121314151617181920212223242526
  1. .board {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: stretch;
  5. max-width: 800px;
  6. .title {
  7. color: #fff;
  8. text-align: center;
  9. margin-bottom: 30px;
  10. letter-spacing: 0.1em;
  11. }
  12. .squares {
  13. position: relative;
  14. display: flex;
  15. flex-direction: column;
  16. .row {
  17. display: flex;
  18. justify-content: center;
  19. }
  20. }
  21. }