fix(frontend): Safari 26でモバイルUIが崩れる問題に対するhotfix (#16528)

This commit is contained in:
tamaina 2025-09-08 20:32:19 +09:00 committed by GitHub
parent 690edcef16
commit a8cc51dc77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -65,5 +65,12 @@ router.useListener('change', ({ resolved }) => {
.root {
height: 100%;
background-color: var(--MI_THEME-bg);
/**
* FIXME: Safari 26 contain: layout を指定するとバグるのでhotfixとして _pageContainer content: strict を上書き
* https://github.com/misskey-dev/misskey/issues/16204#issuecomment-3265404776
* https://bugs.webkit.org/show_bug.cgi?id=297186
*/
contain: size style paint !important;
}
</style>