From be2e3ed64669c385e4ffd08c4c19ac908ce95c87 Mon Sep 17 00:00:00 2001 From: GulSam00 Date: Fri, 31 Jul 2026 00:21:54 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore=20:=20twa=20=EB=B2=84=EC=A0=84=207=20?= =?UTF-8?q?->=208?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/twa/twa-manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/twa/twa-manifest.json b/apps/twa/twa-manifest.json index c98379d..ff0ab79 100644 --- a/apps/twa/twa-manifest.json +++ b/apps/twa/twa-manifest.json @@ -21,8 +21,8 @@ "path": "./android.keystore", "alias": "singcode" }, - "appVersionName": "7", - "appVersionCode": 7, + "appVersionName": "8", + "appVersionCode": 8, "shortcuts": [], "generatorApp": "bubblewrap-cli", "webManifestUrl": "https://www.singcode.kr/manifest.webmanifest", @@ -44,5 +44,5 @@ "fileHandlers": [], "launchHandlerClientMode": "", "displayOverride": [], - "appVersion": "7" + "appVersion": "8" } \ No newline at end of file From 9378700723aacf9fbc85b2f5331fd94c52cf48f8 Mon Sep 17 00:00:00 2001 From: GulSam00 Date: Fri, 31 Jul 2026 00:30:01 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix=20:=20=EA=B2=80=EC=83=89=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=EB=B2=95=20=ED=88=AC=EC=96=B4=20=ED=88=B4=ED=8C=81?= =?UTF-8?q?=EC=9D=B4=20=EB=AA=A8=EB=B0=94=EC=9D=BC=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=ED=99=94=EB=A9=B4=20=EB=84=88=EB=B9=84=EB=A5=BC=20=EB=B2=97?= =?UTF-8?q?=EC=96=B4=EB=82=98=EB=8A=94=20=ED=98=84=EC=83=81=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20(#292)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit react-joyride 기본 고정 너비(380px)가 375px 이하 모바일 화면에서 좌우로 넘치는 문제를 min(380px, calc(100vw - 32px))로 해결. 넓은 화면에서는 기존 380px 상한을 그대로 유지. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01NmbHxKtnqUsh3uDS1RQocQ --- apps/web/src/app/search/SearchTour.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/src/app/search/SearchTour.tsx b/apps/web/src/app/search/SearchTour.tsx index 5303980..8d08ae8 100644 --- a/apps/web/src/app/search/SearchTour.tsx +++ b/apps/web/src/app/search/SearchTour.tsx @@ -145,6 +145,9 @@ export default function SearchTour({ showProgress: true, buttons: TOOLTIP_BUTTONS, skipBeacon: true, + // 라이브러리 기본값(고정 380px)은 375px 이하 모바일 화면에서 좌우로 넘친다. + // 뷰포트보다 넓어지지 않되, 넓은 화면에서는 기존 380px 상한을 유지한다. + width: 'min(380px, calc(100vw - 32px))', }), [isDark], );