From 4bcecbfcf158d4faab60f94b8998095a10572bac Mon Sep 17 00:00:00 2001 From: Ren Amamiya <123083837+reyamir@users.noreply.github.com> Date: Mon, 24 Apr 2023 09:43:07 +0700 Subject: [PATCH] fix image bug --- src/renderer/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/index.css b/src/renderer/index.css index 7d2213c7..0c67ad46 100644 --- a/src/renderer/index.css +++ b/src/renderer/index.css @@ -2,10 +2,10 @@ @tailwind components; @tailwind utilities; -/* Fixed next/image bug, source: https://nextjs.org/docs/api-reference/next/image */ +/* Fixed webkit bug: https://bugs.webkit.org/show_bug.cgi?id=243601 */ @supports (font: -apple-system-body) and (-webkit-appearance: none) { img[loading='lazy'] { - clip-path: inset(0.6px); + clip-path: inset(0.1px); } }