common.css 136 B

12345678910
  1. .flex-row{
  2. display: flex;
  3. }
  4. .justify-between{
  5. justify-content: space-between;
  6. }
  7. .flex-col{
  8. display: flex;
  9. flex-direction: column;
  10. }