Skip to content

Commit

Permalink
fix: try support toggle 2
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyjablonski committed Oct 16, 2023
1 parent 992b23f commit ddd3b65
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sites/public/styles/overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,17 @@

.drawer {
--content-padding: 0;

@supports (height: 100dvh) {
height: 100dvh;
}

@supports not (height: 100dvh) {
padding-bottom: var(--bloom-s8);
.drawer__body {
padding-bottom: var(--bloom-s16);
@screen md {
padding-bottom: 0;
}
}
}
}

Expand Down

0 comments on commit ddd3b65

Please sign in to comment.