Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions apps/twa/twa-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -44,5 +44,5 @@
"fileHandlers": [],
"launchHandlerClientMode": "",
"displayOverride": [],
"appVersion": "7"
"appVersion": "8"
}
3 changes: 3 additions & 0 deletions apps/web/src/app/search/SearchTour.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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],
);
Expand Down
Loading