You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
245 B

5 months ago
  1. // scss-docs-start stacks
  2. .hstack {
  3. display: flex;
  4. flex-direction: row;
  5. align-items: center;
  6. align-self: stretch;
  7. }
  8. .vstack {
  9. display: flex;
  10. flex: 1 1 auto;
  11. flex-direction: column;
  12. align-self: stretch;
  13. }
  14. // scss-docs-end stacks