Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/block-components/image/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,11 @@
border-radius: 9999px !important;
}
}

// This is needed to fix the images rendering as lines when lazy-loaded in Safari.
Comment thread
bfintal marked this conversation as resolved.
Outdated
// Targets Safari 9+ on iOS and macOS, works as of late 2025.
@supports (font: -apple-system-body) {
img.stk-img.lazyloaded {
will-change: transform;
}
}
Loading