-
Notifications
You must be signed in to change notification settings - Fork 3
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
[Feat/#482] 반응형 헤더 구현 #486
Merged
+534
−231
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
3e925c1
chore/#482 : 모바일용 마일 로고 import
moondda 9e8e435
feat/#482 : 로그아웃된 경우 모바일 헤더
moondda fc72717
feat/#482 : 로고만 있는 헤더(GroupInvite,congrats)
moondda a9493d5
chore/#482 : 모바일 로고를 기존 로고 사이즈 조절해서 사용하는 것으로 변경
moondda 0a40f6b
feat/#482 : 관리자페이지 헤더
moondda 6e3bcca
feat/#482 : 모바일 버튼용 공통 컴포넌트
moondda bf05172
chore/#482 : 필요한 공통 버튼 export
moondda 73dddeb
feat/#482 : useOutsideClick 적용
moondda 96eddcf
fix/#482 : 사이드바 mobile 환경에서만 보이게 이동
moondda 460d773
feat/#482 : 로그인/비로그인 사이드헤더 분기
moondda 0640f41
feat/#482 : 헤더버튼 공통css 빼서 정리
moondda 83ecadd
chore/#482 : import build error
moondda 7f80b2b
Feat/#482 : 내 글모임 list
moondda b45d7f4
feat/#482 : 햄버거바 클릭시 사이드바
moondda 1d31398
Feat/#482 : 초대 링크 복사
moondda c53f2a8
fix/#482/다은이 코리 반영
moondda 4fb9fc2
chore/#482 : delete stat.html
moondda 5561560
fix/#482 : 서진언니 코리 반영
moondda e2038e4
chore/#482 : delete stats.html
moondda ead1158
chore/#482 : stat html gitignore
moondda 804df4a
feat/#482 : groupInvite 에서 받아오는 값 수정
moondda 0d7e7f8
fix/#492: groupLeaderInfoPage 렌더링 1번으로 변경
moondda 6ee146d
fix/#492 : 옵셔널 체이닝
moondda b36424d
Merge branch 'develop' into feat/#482/responsiveHeader
moondda ea8f2b3
fix/#482 : 관리자페이지 conflict
moondda 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,88 @@ | ||
import styled from '@emotion/styled'; | ||
import { css } from '@emotion/react'; | ||
|
||
const basicCSS = css` | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
height: 4rem; | ||
padding: 1rem 1.6rem; | ||
|
||
white-space: nowrap; | ||
|
||
cursor: pointer; | ||
border-radius: 0.8rem; | ||
|
||
transition: | ||
transform 0.5s, | ||
background-color 0.5s, | ||
color 0.5s; | ||
`; | ||
|
||
// 글모임 만들기 버튼 | ||
export const CreateGroupBtnWrapper = styled.div` | ||
${basicCSS}; | ||
gap: 0.6rem; | ||
width: 100%; | ||
|
||
color: ${({ theme }) => theme.colors.white}; | ||
|
||
background-color: ${({ theme }) => theme.colors.black}; | ||
|
||
${({ theme }) => theme.fonts.button3}; | ||
|
||
:hover { | ||
color: ${({ theme }) => theme.colors.mainViolet}; | ||
|
||
background-color: ${({ theme }) => theme.colors.white}; | ||
box-shadow: 0 4px 8px 0 rgb(0 0 0 / 16%); | ||
transform: scale(0.95); | ||
} | ||
|
||
:active { | ||
transform: scale(1.1); | ||
} | ||
`; | ||
|
||
// 로그인/로그아웃 버튼 | ||
export const LogInOutBtn = styled.button` | ||
${basicCSS}; | ||
width: 100%; | ||
|
||
color: ${({ theme }) => theme.colors.gray70}; | ||
|
||
${({ theme }) => theme.fonts.button3}; | ||
|
||
:hover { | ||
color: ${({ theme }) => theme.colors.mainViolet}; | ||
|
||
background-color: ${({ theme }) => theme.colors.gray10}; | ||
transform: scale(0.95); | ||
} | ||
|
||
:active { | ||
transform: scale(1.1); | ||
} | ||
`; | ||
|
||
// 내 글 모임 버튼 | ||
export const MyGroupBtn = styled.button` | ||
${basicCSS}; | ||
width: 9.5rem; | ||
|
||
color: ${({ theme }) => theme.colors.gray70}; | ||
|
||
${({ theme }) => theme.fonts.subtitle6}; | ||
|
||
:hover { | ||
color: ${({ theme }) => theme.colors.mainViolet}; | ||
|
||
background-color: ${({ theme }) => theme.colors.gray10}; | ||
transform: scale(0.95); | ||
border-radius: 0.8rem; | ||
} | ||
|
||
:active { | ||
transform: scale(1.1); | ||
} | ||
`; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
p5)굿이여요