Skip to content
Open
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
3 changes: 3 additions & 0 deletions .Jules/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@
## 2026-06-25 - Fix Header Overlap
**Learning:** When using a sticky header, clicking anchor links can cause the target element to scroll under the header, hindering the user experience.
**Action:** Use `scroll-padding-top` on the `html` element with the height of the sticky header to ensure anchor links scroll to a position just below the header.
## 2026-07-02 - Improve color contrast for readability
**Learning:** The CSS variable '--gold' fails WCAG AA contrast standards when used for text on white or light backgrounds.
**Action:** Always prefer higher-contrast alternatives like '--teal' for text on light backgrounds to ensure accessibility.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
## [Unreleased]
- **์„ฑ๋Šฅ ๊ฐœ์„ **: `i18n.js`์—์„œ ์ดˆ๊ธฐ ๋กœ๋“œ ์‹œ ๊ธฐ๋ณธ ์–ธ์–ด๊ฐ€ ํ•œ๊ตญ์–ด(ko)์ธ ๊ฒฝ์šฐ ๋ถˆํ•„์š”ํ•œ DOM ์ˆœํšŒ ๋ฐ ํ…์ŠคํŠธ ์—…๋ฐ์ดํŠธ๋ฅผ ์ƒ๋žตํ•˜๋„๋ก ๊ฐœ์„ ํ–ˆ์Šต๋‹ˆ๋‹ค.
- **ํ…Œ์ŠคํŠธ ์ถ”๊ฐ€**: ๋‹ค๊ตญ์–ด ์ฒ˜๋ฆฌ ๋กœ์ง์˜ ๋ฌด๊ฒฐ์„ฑ์„ ๊ฒ€์ฆํ•˜๊ธฐ ์œ„ํ•ด `test_i18n.html` ํ…Œ์ŠคํŠธ ํŒŒ์ผ์„ ์ถ”๊ฐ€ํ–ˆ์Šต๋‹ˆ๋‹ค.
- **์ ‘๊ทผ์„ฑ(๊ฐ€๋…์„ฑ) ํ–ฅ์ƒ**: `.dikw-grid span` ํ…์ŠคํŠธ์˜ ์ƒ‰์ƒ์„ `--gold`์—์„œ `--teal`๋กœ ๋ณ€๊ฒฝํ–ˆ์Šต๋‹ˆ๋‹ค.
2 changes: 1 addition & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ h1 {
.dikw-grid span {
display: block;
margin-bottom: 38px;
color: var(--gold);
color: var(--teal);
font-size: 14px;
font-weight: 900;
}
Expand Down