diff --git a/src/presentation/style/common/button.ts b/src/presentation/style/common/button.ts new file mode 100644 index 00000000..add1ab7a --- /dev/null +++ b/src/presentation/style/common/button.ts @@ -0,0 +1,14 @@ +import { css } from 'styled-components'; +import { COLOR } from '@styles/common/color'; + +export const CORAL_MAIN_BUTTON = css` + background-color: ${COLOR.CORAL_MAIN}; + color: ${COLOR.WHITE}; +`; + +export const FULL_WIDTH_BUTTON = css` + width: 100%; + height: 58px; + border-radius: 14px; + font-size: 16px; +`; diff --git a/tsconfig.paths.json b/tsconfig.paths.json index 84b5df2a..e871e20f 100644 --- a/tsconfig.paths.json +++ b/tsconfig.paths.json @@ -5,6 +5,7 @@ "@components/*": ["src/presentation/components/*"], "@routes/*": ["src/presentation/routes/*"], "@pages/*": ["src/presentation/pages/*"], + "@styles/*": ["src/presentation/style/*"], "@utils/*": ["src/application/utils/*"], "@models/*": ["src/application/models/*"], "@stores/*": ["src/application/stores/*"],