Skip to content

Commit

Permalink
Remove hidden paddings
Browse files Browse the repository at this point in the history
  • Loading branch information
palinkiewicz committed Aug 4, 2024
1 parent 8abbcfc commit b26eeb3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions styles/wizard.css
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,11 @@
max-width: 15rem;
width: 80%;
padding: 2rem 1rem;
transition: 200ms var(--cubic-ease-out);
}

.hidden .color-selection {
padding: 0 1rem;
}

.color-selection > div {
Expand All @@ -288,6 +293,10 @@
scale: 1.1;
}

.hidden .color-selection > div {
width: 0;
}

#custom-color {
display: flex;
justify-content: center;
Expand All @@ -313,19 +322,30 @@
max-width: 15rem;
width: 80%;
padding: 0rem 1rem 1rem;
transition: 200ms var(--cubic-ease-out);
}

.switch-container:hover {
cursor: pointer;
}

.hidden .switch-container {
font-size: 0;
padding: 0;
}

.switch {
position: relative;
width: 4rem;
height: 2rem;
border-radius: 1rem;
border: 1px solid var(--background-text-color);
margin-right: 1rem;
transition: 200ms var(--cubic-ease-out);
}

.hidden .switch {
height: 0;
}

.switch::after {
Expand Down

0 comments on commit b26eeb3

Please sign in to comment.