-
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.
fix(web-domains): 유저, 모임 생성, 모임 참여 1차 QA 수정 (#116)
* fix: 1차 QA 수정 * fix: 로그인 버튼 Hover 수정
- Loading branch information
1 parent
86d43d4
commit 6809fb8
Showing
16 changed files
with
173 additions
and
48 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
24 changes: 24 additions & 0 deletions
24
...b-domains/src/new-meeting/features/get-meeting-info/components/Checkbox/CheckboxLabel.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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { Txt } from '@sds/components'; | ||
import { colors } from '@sds/theme'; | ||
|
||
import { itemCss } from './styles'; | ||
|
||
export interface CheckboxLabelProps { | ||
title: string; | ||
isChecked?: boolean; | ||
} | ||
|
||
export const CheckboxLabel = (props: CheckboxLabelProps) => { | ||
const { title, isChecked } = props; | ||
|
||
const [emoji, text] = title.split(' '); | ||
|
||
return ( | ||
<span css={itemCss}> | ||
<Txt typography="title3">{emoji}</Txt> | ||
<Txt typography="body3" color={isChecked ? colors.primary500 : colors.black}> | ||
{text} | ||
</Txt> | ||
</span> | ||
); | ||
}; |
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
24 changes: 24 additions & 0 deletions
24
packages/web-domains/src/user/features/get-user-info/components/Checkbox/CheckboxLabel.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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { Txt } from '@sds/components'; | ||
import { colors } from '@sds/theme'; | ||
|
||
import { itemCss } from './styles'; | ||
|
||
export interface CheckboxLabelProps { | ||
title: string; | ||
isChecked?: boolean; | ||
} | ||
|
||
export const CheckboxLabel = (props: CheckboxLabelProps) => { | ||
const { title, isChecked } = props; | ||
|
||
const [emoji, text] = title.split(' '); | ||
|
||
return ( | ||
<span css={itemCss}> | ||
<Txt typography="title3">{emoji}</Txt> | ||
<Txt typography="body3" color={isChecked ? colors.primary500 : colors.black}> | ||
{text} | ||
</Txt> | ||
</span> | ||
); | ||
}; |
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
Oops, something went wrong.