Files
essence/scss/elements/_step-progress-bar.scss
Leo bba003edc9 - Add Step Progress Bar.
- Prefix partials with `_`.
2023-06-10 18:46:58 -05:00

22 lines
348 B
SCSS

.step-progress-bar {
.step-progress-bar-labels {
display: flex;
flex-flow: row;
padding-top: 0.75rem;
div {
flex-grow: 1;
text-align: center;
color: $secondary;
font-weight: bold;
&:first-child {
text-align: left;
}
&:last-child {
text-align: right;
}
}
}
}