From 2410aa5bd5e233b6b58f32e74b619c64e202fa4e Mon Sep 17 00:00:00 2001 From: Suvodip Ghosh Date: Mon, 26 May 2025 15:49:43 +0530 Subject: [PATCH] fix overlap issue --- src/pages/drawing/game_drawing_png.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/drawing/game_drawing_png.astro b/src/pages/drawing/game_drawing_png.astro index 2f8794f..6478250 100644 --- a/src/pages/drawing/game_drawing_png.astro +++ b/src/pages/drawing/game_drawing_png.astro @@ -400,7 +400,7 @@ import Layout from '../../layouts/Layout.astro'; } const outlineImage = this.add.image(customWidth / 2, customHeight / 2.2, 'outline'); if(isMobile){ - outlineImage.setDepth(1).setScale(0.30); + outlineImage.setDepth(1).setScale(0.2); }else if(isTab){ outlineImage.setDepth(1).setScale(0.35); } else{