-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Design: 글로벌 스타일 수정에 따른 전체 페이지 스타일 조정 #278
Merged
ParkSohyunee
merged 18 commits into
8-Sprinters:dev
from
ParkSohyunee:feature/page-style
Dec 9, 2024
Merged
Changes from 13 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
9aa982e
Design: 글로벌 스타일 수정에 따른 홈(home) 페이지 스타일 수정
ParkSohyunee 2759bd7
Design: 글로벌 스타일 수정에 따른 마이피드 페이지, 콜렉션 페이지 스타일 수정
ParkSohyunee 5cccb5b
Design: 글로벌 스타일 수정에 따른 설정페이지, 프로필수정 페이지, 탈퇴페이지 스타일 수정
ParkSohyunee 92e507f
Design: 글로벌 스타일 수정에 따른 요청 주제 페이지, 탈퇴 알림페이지, 온보딩 페이지, 알림페이지 스타일 수정
ParkSohyunee a1ecd58
Design: 리스트 상세페이지, 히스토리 페이지 max-width, height 수정
ParkSohyunee 68929c7
Design: 인트로페이지, 홈페이지 일부(트랜딩 리스트, 추천 리스터), 콜렉션 페이지 일부 스타일 수정
ParkSohyunee 17a364f
Design: 팔로잉/팔로워 페이지 넓이, 높이 수정 및 배경색 등 스타일 일부 수정
ParkSohyunee ab7cb5e
Design: 공통 컴포넌트 (모달, NoData, 하단네브바) 글로벌스타일에 맞게 수정
ParkSohyunee 4ef4443
Style: (홈)페이지 사용하지 않는 API 주석처리
ParkSohyunee 76a3a10
Design: 리스트 생성/수정 페이지 넓이, 높이 수정
ParkSohyunee 0c3ca4a
Design: 로그인 리다이렉트 페이지 스타일 수정
ParkSohyunee 26c428a
Design: 글로벌 스타일 수정 및 최종 스타일 점검
ParkSohyunee fb33d4e
Chore: 빌드 에러 해결을 위한 babel/runtime 라이브러리 설치
ParkSohyunee 2f8fc23
Feat: Next.js 미들웨어를 사용하여 url pathname에 따라 다른 페이지 레이아웃 스타일 적용
ParkSohyunee b786f72
Design: 레이아웃 스타일에 따라 전체 페이지 스타일 수정
ParkSohyunee e2d0ed7
Merge branch 'dev' into feature/page-style
ParkSohyunee 276630c
Merge branch 'feature/page-style' of https://github.com/ParkSohyunee/…
ParkSohyunee eedd7f0
Design: 히스토리 페이지 스타일 수정
ParkSohyunee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { vars } from '@/styles/theme.css'; | ||
import { style } from '@vanilla-extract/css'; | ||
|
||
export const wrapper = style({ | ||
maxWidth: 430, | ||
height: '100vh', | ||
margin: 'auto', | ||
backgroundColor: vars.color.bggray, | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import { vars } from '@/styles/theme.css'; | ||
import { style } from '@vanilla-extract/css'; | ||
|
||
export const wrapper = style({ | ||
marginBottom: 84, | ||
|
||
maxWidth: 430, | ||
margin: 'auto', | ||
background: vars.color.bggray, | ||
position: 'relative', | ||
}); |
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Nahyun-Kang 나현님, 트랜딩 리스트 API 변경이 필요한 것 같아서 변경 전 콘솔창 에러를 방지하기 위해 해당 API 호출 부분은 주석처리 해두었습니다!