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

This commit is contained in:
tamaina 2025-09-08 18:52:03 +09:00
parent 2ea784f345
commit b17e83295f
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>