-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* design: 반응형을 위한 font style 적용 #110 * feat: 사이드바의 CaregoryButton의 isTeam, isTeamMatch props의 기본값을 false로 주기. #110 * chore: 반응형에 따라서 크기가 변경되도록 icon button size 재설정 #112 * refactor: 사이드바의 햄버거 크기 설정을 좀 더 보기 좋게 변경함. #110 * design: side bar에서 width 속성 삭제 - width이 고정이 아닌, fit-content로 사용됨. #110 * design: 사이드바 모바일 반응형 구현 #110 * design: 모바일 사이드바 열려있을때 내부 콘텐츠 밀리도록 수정 #110 * feat: 화면의 크기에 따른 반응형 조절 방식 변경 - 110 * design: 팀 랭킹페이지의 소개글 반응형 구현 #117 * refactor: 팀 랭킹 페이지의 페이지 소개글에서 사용되지 않는 css 삭제 #117 * design: 사이드바 초기상태 닫히도록 수정 및 배경색 추가 #110 * design: 팀 랭킹 페이지에서 페이지 소개글의 border 삭제 - 레이아웃 확인하기 위해서 추가했던 border 속성 삭제 - #117 * chore: react 컴포넌트 - swiper 설치 - #117 * design: 팀 랭킹페이지의 소개글 textStyles 값 변경 - 페이지에서 보기에 글씨가 너무 커보여서 바꾸었습니다. - #117 * chore: 팀 카드의 props 추가 (idx) - swiper에서 index로 slide를 넘겨주는데, pagination 과 연결시켜주기 위해 추가했습니다. - #117 * design: 팀 랭킹페이지의 slide 부분 수정 - 기존에는 제가 작성한 slide 를 넣어는데요, swiper 라이브러리를 알게되어 변경했습니다. - #117 * refactor: 주석 삭제 - #117 * fix: 사이드바 zindex 범위 조정 - 사이드 바 전체에 zIndex = 99로 설정하니, 뒤에 있는 요소들을 선택할 수가 없음. - 그래서 화면의 width이 768px보다 작고 사이드바가 펼쳐졌을 때만, zIndex = 2로 설정. - #110 * refactor: 사이드바 배경과, 사이드바 통합. - #110 * feat: 팀 랭킹 페이지 반응형 구현 - #117 * design: 화면크기에 따른 글씨 크기 바꿔주기. - 처음에 화면에 대입하지 않고 설정하여, 어색한 부분 다시 설정해주었습니다. - #124 * design: 메인페이지의 로그인 버튼 화면 크기에 따라 크기 변화 - 변화하지 않고 있으니, 너무 띄는 것 같아서 조절해주었습니다. - #124 * design: 메인페이지에서 작물의 크기가 화면의 크기에 따라 변화하도록 수정 - #124 * design: 메인페이지 반응형 반영 - 화면의 너비가 768px보다 작을 때는 작물이 사라지도록 했습니다. - 반응형이도록 만든 textStyle을 text요소에 적용시켰습니다. - #124 * design: 작물이 사라지게 하는 화면의 너비 변경 - 화면의 너비가 768px일 때 사라지는 줄 알았는데, 992px 일때 사라지고 있어서 수정했습니다. - #124 * design: 가로 스크롤바 없애기 - overflow: scroll 로 설정하면 안의 내용에 상관없이 가로, 세로 스크롤바가 무조건 생성됩니다. - overflow: auto 로 설정하면 안의 내용 크기에 따라 스크롤바가 생깁니다. - #117 * design: swiper가 부모요소의 크기 넘지 않도록 설정 - #117 * fix: 화면의 세로 길이를 늘렸을 때, 윗부분 세션이 보이는 에러 수정 - #117 * design: 플랫폼 소개글 세로 중앙 정렬로 수정 - #124 --------- Co-authored-by: pipisebastian <yrt7998@pusan.ac.kr>
- Loading branch information
1 parent
127885b
commit f04d7a3
Showing
5 changed files
with
27 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
'use client'; | ||
|
||
import { Flex, Box } from '@chakra-ui/react'; | ||
|
||
import Sidebar from '@/components/Sidebar'; | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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