Skip to content

Commit

Permalink
update stepper css
Browse files Browse the repository at this point in the history
  • Loading branch information
nhobes committed Oct 29, 2024
1 parent f3efa38 commit fb448ce
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions assets/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -2066,7 +2066,7 @@

/* Item Content */
.pc-stepper__item-content {
@apply flex md:min-w-[180px] md:flex-1;
@apply flex md:flex-1 md:min-w-[180px];
}

/* Node */
Expand Down Expand Up @@ -2151,7 +2151,20 @@

/* Connector Wrapper */
.pc-stepper__connector-wrapper {
@apply flex self-start pl-5 md:pl-0 md:self-center;
@apply flex self-start md:self-center;
}

/* Size Variants */
.pc-stepper--sm .pc-stepper__connector-wrapper {
@apply pl-4 md:pl-0; /* Adjust padding-left for small size */
}

.pc-stepper--md .pc-stepper__connector-wrapper {
@apply pl-5 md:pl-0; /* Adjust padding-left for medium size */
}

.pc-stepper--lg .pc-stepper__connector-wrapper {
@apply pl-6 md:pl-0; /* Adjust padding-left for large size */
}

.pc-stepper--horizontal .pc-stepper__connector-wrapper {
Expand Down

0 comments on commit fb448ce

Please sign in to comment.