-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/woowacourse-teams/2024-h…
…aeng-dong into feature/#61
- Loading branch information
Showing
70 changed files
with
1,107 additions
and
416 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
client/src/components/Modal/SetActionModalContent/SetActionModalContent.style.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,16 @@ | ||
import {css} from '@emotion/react'; | ||
|
||
export const setActionModalContentStyle = css({ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
width: '100%', | ||
height: '100%', | ||
padding: '0 1.5rem', | ||
gap: '1.5rem', | ||
}); | ||
|
||
export const setActionModalContentSwitchContainerStyle = css({ | ||
display: 'flex', | ||
width: '100%', | ||
justifyContent: 'space-between', | ||
}); |
24 changes: 0 additions & 24 deletions
24
client/src/components/Modal/SetActionModalContent/SetActionModalContent.style.tsx
This file was deleted.
Oops, something went wrong.
76 changes: 39 additions & 37 deletions
76
client/src/components/Modal/SetActionModalContent/SetActionModalContent.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
23 changes: 23 additions & 0 deletions
23
client/src/components/Modal/SetActionModalContent/SetPurchase.style.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,23 @@ | ||
import {css} from '@emotion/react'; | ||
|
||
export const setPurchaseStyle = () => | ||
css({ | ||
height: '100%', | ||
}); | ||
|
||
export const setPurchaseInputContainerStyle = () => | ||
css({ | ||
display: 'flex', | ||
height: '100%', | ||
flexDirection: 'column', | ||
gap: '1.5rem', | ||
overflow: 'auto', | ||
paddingBottom: '14rem', | ||
}); | ||
|
||
export const setPurchaseInputStyle = () => | ||
css({ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
gap: '0.5rem', | ||
}); |
69 changes: 40 additions & 29 deletions
69
client/src/components/Modal/SetActionModalContent/SetPurchase.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
18 changes: 18 additions & 0 deletions
18
client/src/components/Modal/SetActionModalContent/UpdateParticipants.style.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,18 @@ | ||
import {css} from '@emotion/react'; | ||
|
||
export const updateParticipantsStyle = () => | ||
css({ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
gap: '1.5rem', | ||
height: '100%', | ||
}); | ||
|
||
export const updateParticipantsInputStyle = () => | ||
css({ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
gap: '1rem', | ||
overflow: 'auto', | ||
paddingBottom: '14rem', | ||
}); |
Oops, something went wrong.