Conversation
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.
feat: IDE 레이아웃 및 스타일 충돌 해결
개요 📝
IDE 페이지에서 발생하던 여러 UI 버그 및 레이아웃 깨짐 현상을 해결했습니다. 주된 문제였던 정체불명의 검은색 테두리는 외부 CSS 파일과의 클래스명 충돌로 인한 것으로 파악되었으며, 이를 최우선으로 해결하여 전체적인 UI 안정성을 확보했습니다.
주요 변경 사항 ✨
App.css전역 스타일 초기화:html,body,#root에margin: 0,padding: 0을!important와 함께 적용하여, 브라우저 기본 스타일로 인해 발생하던 외부 검은색 테두리 문제를 근본적으로 해결했습니다..sidebar클래스 충돌 해결 (IDE.css):.sidebar스타일과의 충돌을 막기 위해,IDE.css의.sidebar주요 속성에!important를 추가하여 우선순위를 강제했습니다.padding: 16px을padding: 0 !important;로 덮어써서 사이드바를 감싸던 테두리 문제를 해결했습니다.고정 헤더(Fixed Header) 처리 (
IDE.css):.ide-container에padding-top: 64px와box-sizing: border-box를 적용하여, 상단 헤더에 의해 IDE 화면이 가려지지 않도록 위치를 조정했습니다.사이드바 제목 가시성 확보 (
IDE.css):.sidebar-title에color속성을!important와 함께 명시적으로 지정했습니다.리뷰어에게
!important사용은 CSS 클래스 충돌이라는 특수한 상황을 해결하기 위해 불가피하게 선택했습니다.