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

Fix overlapping mobile system UI #141

Merged
merged 2 commits into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/download/DownloadPreview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ scanImages();
}

.controls {
@apply flex flex-col absolute -bottom-[1.75rem] md:-bottom-[3rem] z-10 -left-2 -right-2 md:-left-6 md:-right-6 items-center justify-center;
@apply flex flex-col absolute -bottom-[1.75rem] md:-bottom-[3rem] -left-2 -right-2 md:-left-6 md:-right-6 items-center justify-center z-[1];

.preview {
@apply mt-2 md:mt-0 px-8 py-2 md:py-6 rounded-xl border border-black/[.12] bg-white text-h5 md:text-h4 font-medium;
Expand Down
2 changes: 1 addition & 1 deletion components/header/PageHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const css = useCssModule();
}

.wrapper {
@apply transition-all h-screen fixed top-0 left-0 bg-white z-[10] w-[calc(100%-5rem)] flex-col py-4 flex space-y-4;
@apply transition-all h-full fixed top-0 left-0 bg-white z-[10] w-[calc(100%-5rem)] flex-col py-4 flex space-y-4;
@apply md:h-auto md:static md:justify-center md:w-full md:flex-row md:py-0 md:items-center md:flex-wrap;
@apply lg:justify-between lg:space-y-0;

Expand Down