App.css 423 B

123456789101112131415161718192021222324252627282930
  1. body {
  2. background-color: white;
  3. }
  4. header {
  5. font-size: calc(10px + 2vmin);
  6. }
  7. .app {
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. .editor {
  12. /* Take the remaining height */
  13. flex-grow: 1;
  14. /* Layout the left sidebar, main content and right sidebar */
  15. display: flex;
  16. flex-direction: row;
  17. }
  18. .mech-picker {
  19. width: 25%;
  20. }
  21. .custom-squad {
  22. /* Take the remaining width */
  23. flex-grow: 1;
  24. }