fix(dashboard): Agent가 준비한 내용 패널이 옆 컬럼 높이만큼 늘어나게 수정 - #267
Merged
Conversation
.agentPrepared에 고정된 height: 539px 때문에 왼쪽 primaryColumn이 늘어나도 오른쪽 패널이 안 따라가던 거 고침. grid stretch 쓰게 height: 100% + min-height: 0으로 바꾸고 dashboardGrid에 align-items: stretch 명시. 1080px 이하 스택 레이아웃은 기존 height:auto/max-height:539px 그대로 유지. Closes #260
3 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.
.agentPreparedheight 539px 고정돼있던 거 grid stretch로 바꿔서 왼쪽 컬럼 늘어나면 같이 늘어나게 고침. 브라우저로 직접 확인함 (전엔 중간에 잘렸는데 이제 왼쪽 리스트 늘어나는 만큼 같이 늘어남).Closes #260