Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for issue #2950 #3002

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/components/unstyled/countdown.css
Expand Up @@ -3,7 +3,7 @@
}
.countdown {
display: inline-flex;
& > * {
& > *:not(.countdown-accessible) {
height: 1em;
@apply inline-block overflow-y-hidden;
&:before {
Expand All @@ -13,4 +13,7 @@
top: calc(var(--value) * -1em);
}
}
& > .countdown-accessible {
@apply sr-only;
}
}
3 changes: 3 additions & 0 deletions src/components/unstyled/drawer.css
Expand Up @@ -6,6 +6,8 @@
}
&-side {
@apply pointer-events-none fixed start-0 top-0 col-start-1 row-start-1 grid w-full grid-cols-1 grid-rows-1 items-start justify-items-start overflow-x-hidden overflow-y-hidden overscroll-contain;
visibility: hidden;
@apply transition-all duration-300 ease-out will-change-transform;
height: 100vh;
height: 100dvh;
& > .drawer-overlay {
Expand All @@ -26,6 +28,7 @@
@apply fixed h-0 w-0 appearance-none opacity-0;
&:checked {
& ~ .drawer-side {
visibility: visible;
@apply pointer-events-auto visible overflow-y-auto;
& > *:not(.drawer-overlay) {
transform: translateX(0%);
Expand Down