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

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>