-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from prgrms-web-devcourse-final-project/feature/
#238 feat: MyPage 컴포넌트 개발
- Loading branch information
Showing
12 changed files
with
231 additions
and
57 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
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 |
---|---|---|
@@ -1,15 +1,55 @@ | ||
import styled from "@emotion/styled"; | ||
import { TextButtonWrapper } from "components/atoms/Button/TextButton/styled"; | ||
import { | ||
ProfileWrapper, | ||
ImageWrapper | ||
} from "components/organisms/Profile/styled"; | ||
|
||
export const MyPageTemplateWrapper: ReturnType<typeof styled.div> = styled.div` | ||
position: fixed; | ||
top: 3rem; | ||
left: 0; | ||
display: flex; | ||
width: 100%; | ||
flex-direction: column; | ||
gap: 1rem; | ||
${ImageWrapper} { | ||
width: 80px; | ||
} | ||
${TextButtonWrapper} { | ||
display: flex; | ||
height: 44px; | ||
padding: 12px 16px; | ||
justify-content: space-between; | ||
align-items: center; | ||
align-self: stretch; | ||
border-radius: 0px 0px 10px 10px; | ||
border-top: 1px solid #eceef3; | ||
background: #fff; | ||
margin: 0; | ||
display: -webkit-box; | ||
-webkit-box-orient: vertical; | ||
-webkit-line-clamp: 1; | ||
overflow: hidden; | ||
color: #707192; | ||
text-overflow: ellipsis; | ||
} | ||
${ProfileWrapper} { | ||
background: var(--white, #fff); | ||
} | ||
`; | ||
|
||
export const ProfileContainer: ReturnType<typeof styled.div> = styled.div` | ||
display: flex; | ||
width: 100%; | ||
flex-direction: column; | ||
align-items: flex-start; | ||
`; | ||
export const BackGroundWrapper: ReturnType<typeof styled.div> = styled.div` | ||
background: #f4f6f9; | ||
padding: 1rem; | ||
`; | ||
|
Oops, something went wrong.