ESPTrainer built with Meteor and React

Board.scss 303B

12345678910111213141516171819
  1. .board {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: stretch;
  5. max-width: 800px;
  6. .squares {
  7. position: relative;
  8. display: flex;
  9. flex-direction: column;
  10. .row {
  11. display: flex;
  12. justify-content: center;
  13. }
  14. }
  15. }