_mixins.sass 521 B

1234567891011121314151617
  1. @mixin vertical($immediate: false)
  2. @at-root .v-timeline--vertical#{if($immediate, &, ' &')}
  3. @content
  4. @mixin horizontal($immediate: false)
  5. @at-root .v-timeline--horizontal#{if($immediate, &, ' &')}
  6. @content
  7. @mixin timeline-first-item()
  8. .v-timeline-item:first-child
  9. .v-timeline-divider, .v-timeline-item__body, .v-timeline-item__opposite
  10. @content
  11. @mixin timeline-last-item()
  12. .v-timeline-item:last-child
  13. .v-timeline-divider, .v-timeline-item__body, .v-timeline-item__opposite
  14. @content