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.
34 lines
567 B
34 lines
567 B
// Border dashed
|
|
|
|
.border-dashed {
|
|
--ds-border-style: dashed;
|
|
}
|
|
|
|
.timeline-vertical {
|
|
position: relative;
|
|
.timeline-item {
|
|
.timeline-bar {
|
|
position: absolute;
|
|
height: 100px;
|
|
left: 5px;
|
|
top: 24px;
|
|
}
|
|
}
|
|
}
|
|
.timeline-vertical-height {
|
|
.timeline-item {
|
|
.timeline-bar {
|
|
height: calc(100% - 1rem) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
// vr border
|
|
.vr {
|
|
display: inline-block;
|
|
align-self: stretch;
|
|
width: $vr-border-width;
|
|
min-height: 1em;
|
|
background-color: var(--#{$prefix}border-color) !important;
|
|
opacity: $hr-opacity;
|
|
}
|
|
|