Fix: 모바일 드롭다운 메뉴 아이콘/라벨 겹침 (#160)#161
Merged
edwardkim merged 1 commit intoApr 16, 2026
Merged
Conversation
`.md-item`의 모바일 패딩이 2-value shorthand(`8px 16px`)로 덮어써져 왼쪽 여백이 32px → 16px로 축소되어, `position:absolute; left:8px` 아이콘이 라벨 텍스트와 약 8px 겹치는 문제 수정. 4-value로 변경하여 왼쪽 32px(아이콘 자리)를 유지하면서 세로 8px 터치 타겟 여백은 그대로 유지. Fixes edwardkim#160
seunghan91
added a commit
to seunghan91/rhwp
that referenced
this pull request
Apr 16, 2026
Contributor
Author
edwardkim
approved these changes
Apr 16, 2026
edwardkim
left a comment
Owner
There was a problem hiding this comment.
검증 완료 ✅
- CSS 1줄 변경:
padding: 8px 16px→padding: 8px 16px 8px 32px - 원인 분석 정확: 모바일 미디어쿼리에서 2-value shorthand가 기본 스타일의 left padding(32px)을 덮어씀
- 데스크톱 회귀 없음 (미디어쿼리 ≤767px 범위)
감사합니다! 👍
edwardkim
added a commit
that referenced
this pull request
Apr 17, 2026
edwardkim
added a commit
that referenced
this pull request
Apr 19, 2026
본 v0.5.0 → v0.7.3 (라이브러리) / 0.2.0 (확장) 배포 주기에 머지된 외부 기여자 6명을 README 3개 변경 이력에 추가: - @ahnbu — Ctrl+S file handle (PR #189, 기명시) - @bapdodi — 회전 도형 리사이즈 + Flip (PR #192) - @dreamworker0 — Windows CFB 경로 (PR #152) - @marsimon — HWP 그림 효과 SVG (PR #149) - @postmelee — 썸네일 + options CSP (PR #168) - @seunghan91 — HWPX Serializer + 다수 (PR #170, #161, #163, #153, #154) 각 README 끝에 "기여자 감사" 섹션 추가 — 6명 일괄 인정. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
7 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


요약
모바일 뷰포트(≤767px)에서 드롭다운 메뉴의 아이콘이 라벨 텍스트와 겹치는 문제를 수정합니다.
Fixes #160
원인
rhwp-studio/src/styles/menu-bar.css의 기본.md-item은padding: 5px 16px 5px 32px로position: absolute; left: 8px; width: 16px아이콘 자리를 왼쪽에 확보하고 있습니다.rhwp-studio/src/styles/responsive.css의 모바일 미디어쿼리가padding: 8px 16px(2-value shorthand)로 덮어쓰면서 왼쪽 여백이 32px → 16px로 축소되어, 라벨이 아이콘 영역과 8px 겹치게 됩니다.수정
4-value padding으로 변경해 왼쪽 32px(아이콘 자리)를 유지합니다:
@media (width <= 767px) { .md-item { min-height: var(--touch-target-min); - padding: 8px 16px; + padding: 8px 16px 8px 32px; font-size: var(--font-size-md); } }터치 타겟 세로 8px 여백은 유지되며, 좌우 간격도 그대로입니다.
검증
cargo test/cargo clippy영향 없음스크린샷
Before/After 스크린샷을 PR 댓글로 추가합니다.
체크리스트
devel브랜치를 대상으로 PR 생성