Skip to content

Commit

Permalink
fix: positioning of step markers to allow correct guttering
Browse files Browse the repository at this point in the history
  • Loading branch information
squigglybob committed Dec 19, 2024
1 parent e69464a commit c7ddde7
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions dt-core/admin/components/setup-wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export class SetupWizard extends LitElement {
border-radius: 10px;
}
.steps {
padding-left: 20px;
padding-left: 24px;
}
.step {
position: relative;
Expand All @@ -207,14 +207,12 @@ export class SetupWizard extends LitElement {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
transform: scale(1.4);
display: flex;
justify-content: flex-start;
left: 0;
transform: translateX(-150%) scale(1.4);
}
.step[current]::before {
padding-left: 3px;
transform: translate(-210%) scale(1.4);
}
.btn-primary {
background-color: var(--primary-color);
Expand Down

0 comments on commit c7ddde7

Please sign in to comment.