-
Notifications
You must be signed in to change notification settings - Fork 0
[Feat] WTH-250: 랜딩 QA 반영 #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The head ref may contain hidden characters: "feat/WTH-250-\uB79C\uB529-QA"
Changes from all commits
93a3e34
1fbf9a9
dea4e2b
0fd8334
d71e1e5
9bd8477
fb6320d
972c0fd
baddf13
eb25dc4
541e8c2
8c89542
c365115
2fa42aa
dfaf221
b464a50
bb5b9bd
ef4f2ad
9ae3fa2
89171bd
795d866
b7395b5
cd2d0e1
78436a2
ab26357
3596cbe
43b9456
bc6a571
b086e56
0412a7c
bdbbb2e
547803d
22f1c90
7de5523
371defd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,8 @@ | ||
| export { default as LandingCard1 } from './landing_card_1.svg'; | ||
| export { default as LandingCard2 } from './landing_card_2.svg'; | ||
| export { default as LandingCard3 } from './landing_card_3.svg'; | ||
| export { default as LandingCard4 } from './landing_card_4.svg'; | ||
| export { default as LandingCard5 } from './landing_card_5.svg'; | ||
| export { default as LandingCard6 } from './landing_card_6.svg'; | ||
| export { default as LandingCard7 } from './landing_card_7.svg'; | ||
| export { default as LandingCard8 } from './landing_card_8.svg'; | ||
|
|
||
| export { default as LandingHeroCard } from './landing_hero_card.svg'; | ||
| export { default as LandingCard1 } from './landing_card_1.png'; | ||
| export { default as LandingCard2 } from './landing_card_2.png'; | ||
| export { default as LandingCard3 } from './landing_card_3.png'; | ||
| export { default as LandingCard4 } from './landing_card_4.png'; | ||
| export { default as LandingCard5 } from './landing_card_5.png'; | ||
| export { default as LandingCard6 } from './landing_card_6.png'; | ||
| export { default as LandingCard7 } from './landing_card_7.png'; | ||
| export { default as LandingCard8 } from './landing_card_8.png'; |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확대 제한(
maximumScale: 1)은 접근성 회귀를 유발합니다.Line 20의
maximumScale: 1은 사용자 확대를 막아 저시력 사용자의 이용성을 크게 떨어뜨립니다. 사파리 자동 확대 이슈는 입력 요소 폰트 크기/터치 처리로 해결하고, 전역 viewport에서는 확대를 허용하는 쪽이 안전합니다.접근성 회귀를 막는 최소 수정안
export const viewport: Viewport = { width: 'device-width', initialScale: 1, - maximumScale: 1, };📝 Committable suggestion
🤖 Prompt for AI Agents