fix(frontend): Safari 26のcontain: layoutバグでデッキのカラムの高さ計算がチラつく問題のhotfix

This commit is contained in:
tamaina 2025-09-18 21:21:36 +09:00
parent 5fe08d0bbb
commit 99fb892c68
1 changed files with 7 additions and 1 deletions

View File

@ -312,7 +312,13 @@ function onDrop(ev) {
height: 100%; height: 100%;
overflow: clip; overflow: clip;
contain: strict; /**
* FIXME: Safari 26 contain: layout (含む)指定するとバグる
* https://github.com/misskey-dev/misskey/issues/16204#issuecomment-3265404776
* https://bugs.webkit.org/show_bug.cgi?id=297186
*/
// contain: strict;
contain: size style paint;
border-radius: 10px; border-radius: 10px;
&.draghover { &.draghover {