style.css 352 B

123456789101112131415161718192021222324
  1. .row {
  2. display: flex;
  3. flex-direction: row;
  4. flex: 1;
  5. word-break: break-word;
  6. }
  7. .space-between {
  8. display: flex;
  9. flex-direction: row;
  10. justify-content: space-between;
  11. word-break: break-word;
  12. }
  13. .column {
  14. display: flex;
  15. flex-direction: column;
  16. flex: 1;
  17. word-break: break-word;
  18. }
  19. .grow {
  20. flex-grow: 1;
  21. }