Ohm-Management - Projektarbeit B-ME
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.

tiles.sass 692B

1234567891011121314151617181920212223242526272829303132
  1. .tile
  2. align-items: stretch
  3. display: block
  4. flex-basis: 0
  5. flex-grow: 1
  6. flex-shrink: 1
  7. min-height: min-content
  8. // Modifiers
  9. &.is-ancestor
  10. margin-left: -0.75rem
  11. margin-right: -0.75rem
  12. margin-top: -0.75rem
  13. &:last-child
  14. margin-bottom: -0.75rem
  15. &:not(:last-child)
  16. margin-bottom: 0.75rem
  17. &.is-child
  18. margin: 0 !important
  19. &.is-parent
  20. padding: 0.75rem
  21. &.is-vertical
  22. flex-direction: column
  23. & > .tile.is-child:not(:last-child)
  24. margin-bottom: 1.5rem !important
  25. // Responsiveness
  26. +tablet
  27. &:not(.is-child)
  28. display: flex
  29. @for $i from 1 through 12
  30. &.is-#{$i}
  31. flex: none
  32. width: ($i / 12) * 100%