Skip to content

Commit

Permalink
fix(frontend): モーダルダイアログがsafe areaを侵犯しないように
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Sep 15, 2023
1 parent a485758 commit d1a1995
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
- Fix: Misskey 플러그인 설치 시 AiScript 버전 확인이 0.14.0 이후 버전에서 지원되지 않는 문제 수정 (misskey-dev/misskey#11729)
- Fix: '대화'에서 Autocomplete를 사용할 수 없음
- Fix: 누락된 안테나 소스 추가
- Fix: 모달 팝업이 safe area를 침범하지 않도록

### Server
- Nodeinfo의 Software 이름을 CherryPick이 아닌 다른 이름으로 변경할 때 관련 주석 추가
Expand Down
6 changes: 3 additions & 3 deletions packages/frontend/src/components/MkModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,8 @@ defineExpose({
bottom: 0;
left: 0;
right: 0;
margin: auto;
padding: 32px;
margin: auto auto calc(env(safe-area-inset-bottom));
padding: 32px;
display: flex;
overflow: auto;
Expand Down Expand Up @@ -467,7 +467,7 @@ defineExpose({
bottom: 0;
left: 0;
right: 0;
margin: auto;
margin: auto auto calc(env(safe-area-inset-bottom));
}
}
}
Expand Down

0 comments on commit d1a1995

Please sign in to comment.