Skip to content

Commit

Permalink
Fixed margin error
Browse files Browse the repository at this point in the history
  • Loading branch information
mikael-ros committed Oct 27, 2024
1 parent c3537ce commit f21dee4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/components/ui/Timer.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
overflow: hidden;
opacity: 0;
margin-top: 0 !important;
flex-wrap: nowrap;

transition-property: flex, opacity;
transition-duration: var(--transition-duration-medium), var(--transition-duration-medium);
Expand All @@ -87,13 +88,17 @@
transition-duration: var(--transition-duration-medium);
}

.timer__config > * {
margin: 0 0 0 var(--gap);
#timer__config__input-wrapper > *:first-child {
margin: 0 !important;
}

.timer__config > *, #timer__config__input-wrapper > * {
margin: 0 0 0 var(--gap) !important;
}

@supports ((aspect-ratio: 1 / 1) and (gap: 0)) {
.timer__config > * {
margin: 0;
.timer__config > *, #timer__config__input-wrapper > * {
margin: 0 !important;
}
}

Expand Down

0 comments on commit f21dee4

Please sign in to comment.