clermont-ici: correct center alignment of steps (#67959)

This commit is contained in:
Thomas Jund 2022-11-30 16:20:05 +01:00
parent b5a2f339a1
commit ff06f53a5d
1 changed files with 6 additions and 3 deletions

View File

@ -548,7 +548,10 @@ div.buttons .cancel-button button {
}
.wcs-step {
position: relative;
flex-basis: 5rem;
flex-basis: 6rem;
&.last {
flex-basis: auto;
}
}
.wcs-step--marker {
font-size: $fz-h3;
@ -556,9 +559,9 @@ div.buttons .cancel-button button {
.wcs-step--label {
display: block !important;
font-size: $fz-xsmall;
left: -1.1rem;
left: -1.6rem;
top: calc(100% + .5em);
width: 6rem;
}
}