[view] Summary 내 Detail 컴포넌트 내부 콘텐츠 스타일 개선 작업 #815
                
     Merged
            
            
          
      
        
          +63
        
        
          −54
        
        
          
        
      
    
  
  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.
  
    
  
    
Related issue
Closes #790
Result
Summary의 cluster-summary__info 클릭 시 나오는 Detail 컴포넌트의 내부 콘텐츠 스타일링 개선 작업을 진행했습니다.
기존
commit_id가 commit date와 겹쳐 보이는 현상+commit message hover 시, 주변 내용들을 완전히 뒤덮는 상황수정
detail__commit-item 구조 개선+ 그 외 추가적인 스타일 개선 작업(cluster-summary 박스 overflow 개선과detail max-height 조정)효과
Work list
detail__commit-item 구조 리팩토링
일렬로 flex 처리 되어있었던 detail__commit-item 내부 요소들을
commit-item__left(author, commit message)와commit-item__right(author, date, commit_id)로 이분화하여 구조를 개선하였습니다. 해당 작업을 기반으로, space-between으로 item 간 간격 정리를 해주었습니다.추가적으로 commit message hover 시, 확대하고자 하는 메시지가 다른 내용들을 가리지 않도록
absolute 되어 있던 관련 코드를 삭제시켰고, 기존 align-items: center 처리 되었던 부분을flex-start 상태로 변경시켜 깔끔한 ui로 개선시켜보았습니다.cluster-summary 박스 overflow 개선
기존 cluster-summary 박스 내부 콘텐츠들이 박스 밖으로 overflow되는 문제를 발견하여
hidden처리해주었습니다.detail max-height 조정
max-height가 17.5rem로 고정으로 박혀있어서 커밋 수가 적을 콘텐츠에는 하단에 공백이 크게 생기는 상황을 확인하여 이를 방지하기 위해
fit-content처리를 해주었습니다.Discussion
위 작업들을 기반으로 문제되었던 이슈들이 잘 해결됐는지 확인부탁드립니다:)