Skip to content

Commit

Permalink
steps primevue component
Browse files Browse the repository at this point in the history
  • Loading branch information
J0taFerreira committed Oct 27, 2023
1 parent 232ab9d commit ce717f3
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions style-sheets/primevue-components-overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1029,3 +1029,49 @@ li.#{variables.$primevue-prefix}-menuitem-separator svg {
margin: 0;
}
}

/* ------------------------------------ step component ----------------------------- */

.#{variables.$primevue-prefix}-steps {
display: none;
margin-top: 1.5rem;
}

.#{variables.$primevue-prefix}-steps-item {
border-top: 0.125rem solid map.get(
lightTheme.$light-theme,
'field-01'
) !important;
}

.#{variables.$primevue-prefix}-steps-item
.#{variables.$primevue-prefix}-highlight,
.#{variables.$primevue-prefix}-steps-current {
border-top: 0.125rem solid map.get(
lightTheme.$light-theme,
'interactive'
) !important;
}

.#{variables.$primevue-prefix}-steps
.#{variables.$primevue-prefix}-steps-item:before {
display: none;
}

.#{variables.$primevue-prefix}-steps
.#{variables.$primevue-prefix}-steps-list {
height: 3rem;
}

.#{variables.$primevue-prefix}-steps-list
.#{variables.$primevue-prefix}-steps-item {
flex-direction: column;
justify-content: flex-start;
}

@media (min-width: 768px) {
.#{variables.$primevue-prefix}-steps {
display: block;
margin-top: 1.5rem;
}
}

0 comments on commit ce717f3

Please sign in to comment.