Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
fix(FooterStepper): adjust gap between stepper and buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
tewshi authored and kelsos committed May 2, 2024
1 parent 99ded64 commit bd6e347
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/steppers/FooterStepper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function onClick(index: number) {

<style lang="scss" module>
.footer-stepper {
@apply flex items-center justify-between transition-all duration-150;
@apply flex items-center justify-between gap-x-4 transition-all duration-150;
.numeric {
@apply text-rui-text;
Expand Down Expand Up @@ -175,23 +175,23 @@ function onClick(index: number) {
}
.bullets {
@apply mx-4 space-x-1;
@apply gap-x-1;
.bullet {
@apply w-2;
}
}
.pills {
@apply w-full space-x-3;
@apply w-full gap-x-3;
.pill {
@apply w-full;
}
}
.progress {
@apply max-w-[60%] mx-4;
@apply max-w-[60%];
}
.arrow__button {
Expand Down

0 comments on commit bd6e347

Please sign in to comment.