Skip to content
Snippets Groups Projects
Unverified Commit 446e4ce0 authored by tamaina's avatar tamaina Committed by GitHub
Browse files

fix: iPhone X以降(?)でページの内容が全て表示しきれないのを修正 (#8375)

* add safe-area-inset-bottom to spacer

* fix

* ✌️

* fix
parent 5431b512
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ onMounted(() => {
}
@media (max-width: 500px) {
bottom: 92px;
bottom: calc(env(safe-area-inset-bottom, 0px) + 92px);
padding: 0 8px;
}
......
......@@ -265,7 +265,7 @@ const wallpaper = localStorage.getItem('wallpaper') != null;
min-width: 0;
> .spacer {
height: 82px;
height: calc(env(safe-area-inset-bottom, 0px) + 96px);
@media (min-width: ($widgets-hide-threshold + 1px)) {
display: none;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment