1234567891011121314151617 |
- @mixin vertical($immediate: false)
- @at-root .v-timeline--vertical#{if($immediate, &, ' &')}
- @content
- @mixin horizontal($immediate: false)
- @at-root .v-timeline--horizontal#{if($immediate, &, ' &')}
- @content
- @mixin timeline-first-item()
- .v-timeline-item:first-child
- .v-timeline-divider, .v-timeline-item__body, .v-timeline-item__opposite
- @content
- @mixin timeline-last-item()
- .v-timeline-item:last-child
- .v-timeline-divider, .v-timeline-item__body, .v-timeline-item__opposite
- @content
|