-
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.
* feat: Route에 따른 header 조건 지정 * fix: 바텀네비게이션 announce -> notice로 수정 * refactor: style 코드들 정렬 * feat: 더보기 클릭 라우팅 추가 * feat: 코드 스타일 업데이트 * feat: 스크롤 코드 삭제 * feat: bottom nav bar true로 설정 * feat: 상위 3개만 출력하도록 변경 * feat: 로그인에서 utility header 추가 * refactor: 불필요한 코드 삭제 * refactor: PR시 빌드 확인 코드 삭제 * feat: main에서 api 콜 수정 * refactor: header 설정 추가 * fix: storybook 업데이트
- Loading branch information
1 parent
06fc5ce
commit 7be564c
Showing
18 changed files
with
236 additions
and
179 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
71 changes: 35 additions & 36 deletions
71
src/components/Home/NoticeFunSystem/NoticeFunSystem.styles.tsx
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,71 +1,70 @@ | ||
import styled from '@emotion/styled'; | ||
import { TEXT_STYLES } from '@/styles/constants/textStyles'; | ||
export const SummaryBox = styled.div` | ||
width : 100%; | ||
heigth : 264px; | ||
padding : 16px 24px; | ||
background: #FFFFFF; | ||
width: 100%; | ||
height: 264px; | ||
padding: 16px 24px; | ||
background: #ffffff; | ||
`; | ||
export const TopBox = styled.div` | ||
display : flex; | ||
display: flex; | ||
justify-content: space-between; | ||
`; | ||
|
||
export const Title = styled.div` | ||
${TEXT_STYLES.HeadM20}; | ||
left : 0px; | ||
left: 0px; | ||
`; | ||
export const MoreButton = styled.div` | ||
${TEXT_STYLES.CapR14}; | ||
color : #6E6E6E; | ||
margin-top : 4px; | ||
display : flex; | ||
align-items : center; | ||
color: #6e6e6e; | ||
margin-top: 4px; | ||
display: flex; | ||
align-items: center; | ||
`; | ||
|
||
export const TextBox = styled.div` | ||
box-sizing: border-box; | ||
position: relative; | ||
width: 100%; | ||
height : 170px; | ||
margin-top : 16px; | ||
background: #FFFFFF; | ||
border: 1px solid #D9D9D9; | ||
height: 170px; | ||
margin-top: 16px; | ||
background: #ffffff; | ||
border: 1px solid #d9d9d9; | ||
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05); | ||
border-radius: 15px; | ||
`; | ||
|
||
export const Line = styled.div<{top : string}>` | ||
width : 100%; | ||
height : 1px; | ||
top : ${(props)=> props.top}; | ||
position : absolute; | ||
background-color : #D9D9D9; | ||
export const Line = styled.div<{ top: string }>` | ||
width: 100%; | ||
height: 1px; | ||
top: ${(props) => props.top}; | ||
position: absolute; | ||
background-color: #d9d9d9; | ||
`; | ||
|
||
export const TextLine = styled.div<{top : string}>` | ||
display : flex; | ||
width : 100%; | ||
position : absolute; | ||
export const TextLine = styled.div<{ top: string }>` | ||
display: flex; | ||
width: 100%; | ||
position: absolute; | ||
// margin : 0px 12px; | ||
top : ${(props)=> props.top}; | ||
box-sizing : border-box; | ||
top: ${(props) => props.top}; | ||
box-sizing: border-box; | ||
`; | ||
|
||
export const TextSummary = styled.div` | ||
${TEXT_STYLES.BodyM16}; | ||
white-space : nowrap; | ||
overflow : hidden; | ||
display : auto; | ||
text-overflow : ellipsis; | ||
padding-right : 50px; | ||
white-space: nowrap; | ||
overflow: hidden; | ||
display: auto; | ||
text-overflow: ellipsis; | ||
padding-right: 50px; | ||
padding-left: 12px; | ||
`; | ||
|
||
export const Date = styled.div` | ||
${TEXT_STYLES.CapR14}; | ||
color : #6E6E6E; | ||
position : absolute; | ||
right : 12px; | ||
`; | ||
color: #6e6e6e; | ||
position: absolute; | ||
right: 12px; | ||
`; |
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.