From 3ebcbf4a7ca9ffed6758bdbb000f05d130bf8ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Ku=C4=8Dera?= Date: Sat, 1 Jun 2024 11:33:23 +0200 Subject: [PATCH 1/2] Setup image rendering (#636) --- styles/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles/index.css b/styles/index.css index 3eacd6a6..e4e9917d 100644 --- a/styles/index.css +++ b/styles/index.css @@ -113,6 +113,10 @@ user-select: none; /* Standard syntax */ } +#map { + image-rendering: pixelated; +} + /* Write you own custom component styles here */ /* Start purging... */ From 6d5ca1b8dab8a0d7777a397613069279dc2af378 Mon Sep 17 00:00:00 2001 From: petrkucerak Date: Sat, 1 Jun 2024 11:37:44 +0200 Subject: [PATCH 2/2] Fix image rendering --- styles/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/index.css b/styles/index.css index e4e9917d..5ccbd8a1 100644 --- a/styles/index.css +++ b/styles/index.css @@ -114,7 +114,7 @@ } #map { - image-rendering: pixelated; + image-rendering: crisp-edges; } /* Write you own custom component styles here */