-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[FE] 폴더 구조 리팩터링
- Loading branch information
Showing
186 changed files
with
296 additions
and
557 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes
File renamed without changes
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
65 changes: 65 additions & 0 deletions
65
frontend/src/components/CoduoDocs/ContentBox/ContentBox.styles.ts
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,65 @@ | ||
import { Link } from 'react-router-dom'; | ||
|
||
import styled from 'styled-components'; | ||
|
||
export const Title = styled.p` | ||
color: ${({ theme }) => theme.color.primary[700]}; | ||
font-size: ${({ theme }) => theme.fontSize.base}; | ||
font-weight: ${({ theme }) => theme.fontWeight.semibold}; | ||
@media (width <= 1400px) { | ||
font-size: ${({ theme }) => theme.fontSize.base}; | ||
} | ||
`; | ||
|
||
export const ContentList = styled.ul` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1rem; | ||
position: relative; | ||
padding-left: 15px; | ||
@media (width <= 1400px) { | ||
gap: 0.8rem; | ||
} | ||
`; | ||
|
||
export const ContentItem = styled(Link)<{ $isActive: boolean }>` | ||
position: relative; | ||
color: ${({ $isActive, theme }) => ($isActive ? theme.color.black[90] : theme.color.black[60])}; | ||
font-size: ${({ theme }) => theme.fontSize.lg}; | ||
text-decoration: none; | ||
transition: all 0.1s; | ||
&::before { | ||
position: absolute; | ||
top: 0; | ||
left: -2rem; | ||
width: 3px; | ||
height: 145%; | ||
background-color: ${({ $isActive, theme }) => ($isActive ? theme.color.secondary[500] : theme.color.black[30])}; | ||
transition: all 0.2s; | ||
content: ''; | ||
} | ||
@media (width <= 1400px) { | ||
font-size: ${({ theme }) => theme.fontSize.md}; | ||
} | ||
`; | ||
|
||
export const Container = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 1.1rem; | ||
@media (width <= 1400px) { | ||
gap: 0.9rem; | ||
} | ||
`; |
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
2 changes: 1 addition & 1 deletion
2
frontend/src/components/CoduoDocs/FloatingSidebar/FloatingSidebar.stories.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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...nagementModal/CategoryManagementModal.tsx → ...nagementModal/CategoryManagementModal.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
Binary file removed
BIN
-6 KB
frontend/src/components/CompletedPairRoom/ReferenceCard/CategoryManagementModal/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
frontend/src/components/CompletedPairRoom/ReferenceCard/Header/Header.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
4 changes: 2 additions & 2 deletions
4
frontend/src/components/CompletedPairRoom/ReferenceCard/ReferenceCard.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
2 changes: 1 addition & 1 deletion
2
frontend/src/components/CompletedPairRoom/RetrospectButton/RetrospectButton.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
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
25 changes: 0 additions & 25 deletions
25
...onents/Main/PairRoomCreateModal/PairRoomCreateComplete/PairRoomCreateComplete.stories.tsx
This file was deleted.
Oops, something went wrong.
47 changes: 0 additions & 47 deletions
47
...src/components/Main/PairRoomCreateModal/PairRoomCreateComplete/PairRoomCreateComplete.tsx
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
frontend/src/components/Main/PairRoomCreateModal/PairRoomCreateModal.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
8 changes: 4 additions & 4 deletions
8
frontend/src/components/Main/PairRoomEntryModal/PairRoomEntryModal.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
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...e/MyPageContent/ListLayout/ListLayout.tsx → ...mponents/MyPage/ListLayout/ListLayout.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
Oops, something went wrong.