-
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.
* Squashed commit of the following: commit d0659e0 Merge: 3c9fe3e 12758be Author: Jeon Jinho <[email protected]> Date: Tue Jan 23 17:28:08 2024 +0900 Merge pull request #144 from team-offonoff/fix/login-flow chore: add pr template commit 12758be Merge: 415f022 3c9fe3e Author: Jeon Jinho <[email protected]> Date: Tue Jan 23 17:26:00 2024 +0900 Merge branch 'dev' into fix/login-flow commit 3c9fe3e Merge: efac491 b4fd241 Author: Jeon Jinho <[email protected]> Date: Tue Jan 23 16:45:28 2024 +0900 Merge pull request #143 from team-offonoff/Jinho1011-patch-1 chore: add pr template commit b4fd241 Author: Jeon Jinho <[email protected]> Date: Tue Jan 23 16:05:13 2024 +0900 Create pull_request_template.md commit 415f022 Author: 전진호 <[email protected]> Date: Tue Jan 23 15:49:28 2024 +0900 feat: add term mutation api commit df7633d Author: 전진호 <[email protected]> Date: Tue Jan 23 15:02:58 2024 +0900 feat: implements Terms component commit be6d63b Author: 전진호 <[email protected]> Date: Tue Jan 23 15:02:47 2024 +0900 feat: toggle 약관동의 bottomsheet on submit commit 3816501 Author: 전진호 <[email protected]> Date: Tue Jan 23 15:02:22 2024 +0900 feat: add transparent props commit 2bb7340 Author: 전진호 <[email protected]> Date: Tue Jan 23 15:02:12 2024 +0900 feat: add checkbox component commit e0610a8 Author: 전진호 <[email protected]> Date: Tue Jan 23 15:01:59 2024 +0900 fix: add transparent props to bottomsheet commit e99a4bf Author: 전진호 <[email protected]> Date: Tue Jan 23 15:01:46 2024 +0900 feat: add check icon commit b292c88 Author: 전진호 <[email protected]> Date: Mon Jan 22 22:48:06 2024 +0900 fix: genders value commit 36779a0 Author: 전진호 <[email protected]> Date: Mon Jan 22 22:47:56 2024 +0900 fix: file name error commit 75ae65f Author: 전진호 <[email protected]> Date: Mon Jan 22 20:52:04 2024 +0900 fix: remove funnel from signup commit a5ca53e Author: 전진호 <[email protected]> Date: Mon Jan 22 20:42:22 2024 +0900 feat: setUser when user is not newMember commit e7e2379 Author: 전진호 <[email protected]> Date: Mon Jan 22 20:42:00 2024 +0900 feat: add useAuthStore's user commit 5e1637b Author: 전진호 <[email protected]> Date: Mon Jan 22 20:41:27 2024 +0900 fix: make nickname optional commit f2c1b11 Author: 전진호 <[email protected]> Date: Mon Jan 22 20:41:08 2024 +0900 chore: add serve script commit ec39b94 Author: 전진호 <[email protected]> Date: Mon Jan 22 20:08:30 2024 +0900 feat: add user store commit 7392567 Author: 전진호 <[email protected]> Date: Mon Jan 22 18:17:14 2024 +0900 chore: add zustand commit f95bd5f Author: 전진호 <[email protected]> Date: Mon Jan 22 17:44:43 2024 +0900 fix: navigate to signup when new member signed up * feat: add TextInput variations * fix: replace to theme
- Loading branch information
Showing
6 changed files
with
70 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { CSSProperties } from 'react'; | ||
|
||
import { colors } from '@styles/theme'; | ||
|
||
export interface TextInputTheme { | ||
padding: CSSProperties['padding']; | ||
rounded: boolean; | ||
fontSize: CSSProperties['fontSize']; | ||
fontWeight: CSSProperties['fontWeight']; | ||
backgroundColor: CSSProperties['backgroundColor']; | ||
placeholderColor: CSSProperties['color']; | ||
} | ||
|
||
export const theme1: TextInputTheme = { | ||
padding: '14px 16px', | ||
rounded: true, | ||
fontSize: '1.4rem', | ||
fontWeight: 600, | ||
backgroundColor: colors.navy2_40, | ||
placeholderColor: colors.purple, | ||
}; | ||
|
||
export const theme2: TextInputTheme = { | ||
padding: '16px', | ||
rounded: true, | ||
fontSize: '1.6rem', | ||
fontWeight: 500, | ||
backgroundColor: colors.navy2_40, | ||
placeholderColor: colors.purple2, | ||
}; | ||
|
||
export const theme3: TextInputTheme = { | ||
padding: '10px 0', | ||
rounded: false, | ||
fontSize: '2rem', | ||
fontWeight: 400, | ||
backgroundColor: 'transparent', | ||
placeholderColor: colors.purple2, | ||
}; |
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