From 506cc68d871e78eb14f2655a39436152b0aa9fe9 Mon Sep 17 00:00:00 2001 From: jynam Date: Sat, 8 Jan 2022 18:03:27 +0900 Subject: [PATCH 1/6] =?UTF-8?q?=F0=9F=93=9D=20chore:=20style=20=ED=8F=B4?= =?UTF-8?q?=EB=8D=94=20=EC=A0=88=EB=8C=80=20=EA=B2=BD=EB=A1=9C=20=EC=A7=80?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.paths.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.paths.json b/tsconfig.paths.json index 84b5df2a..bc21b849 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/*"], + "@style/*": ["src/presentation/style/*"], "@utils/*": ["src/application/utils/*"], "@models/*": ["src/application/models/*"], "@stores/*": ["src/application/stores/*"], From 26324efe845a690c035dcf8d7be3404747e7b76c Mon Sep 17 00:00:00 2001 From: jynam Date: Sat, 8 Jan 2022 18:36:02 +0900 Subject: [PATCH 2/6] =?UTF-8?q?=F0=9F=93=9D=20chore:=20=EC=BD=94=EB=9E=84?= =?UTF-8?q?=20=EB=A9=94=EC=9D=B8=20=EC=83=89=20=EB=B2=84=ED=8A=BC,=20?= =?UTF-8?q?=ED=81=B0=20=EB=B2=84=ED=8A=BC=20=EC=8A=A4=ED=83=80=EC=9D=BC=20?= =?UTF-8?q?=EC=83=81=EC=88=98=20=EC=A7=80=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/presentation/style/common/button.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/presentation/style/common/button.ts diff --git a/src/presentation/style/common/button.ts b/src/presentation/style/common/button.ts new file mode 100644 index 00000000..a9fb560c --- /dev/null +++ b/src/presentation/style/common/button.ts @@ -0,0 +1,14 @@ +import { css } from 'styled-components'; +import { COLOR } from '@style/common/color'; + +export const CORAL_MAIN_BTN = css` + background-color: ${COLOR.CORAL_MAIN}; + color: ${COLOR.WHITE}; +`; + +export const BIG_BTN = css` + width: 354px; + height: 58px; + border-radius: 14px; + font-size: 16px; +`; From d8164528a13884efb179481f8378eb6204ed64e9 Mon Sep 17 00:00:00 2001 From: jynam Date: Sat, 8 Jan 2022 20:51:00 +0900 Subject: [PATCH 3/6] =?UTF-8?q?=F0=9F=94=A8=20refacter:=20BTN=20->=20BUTTO?= =?UTF-8?q?N?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/presentation/style/common/button.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/presentation/style/common/button.ts b/src/presentation/style/common/button.ts index a9fb560c..9644db0d 100644 --- a/src/presentation/style/common/button.ts +++ b/src/presentation/style/common/button.ts @@ -1,12 +1,12 @@ import { css } from 'styled-components'; import { COLOR } from '@style/common/color'; -export const CORAL_MAIN_BTN = css` +export const CORAL_MAIN_BUTTON = css` background-color: ${COLOR.CORAL_MAIN}; color: ${COLOR.WHITE}; `; -export const BIG_BTN = css` +export const BIG_BUTTON = css` width: 354px; height: 58px; border-radius: 14px; From add5c5bc952db0e6107fa75a5f835fc9af7f5667 Mon Sep 17 00:00:00 2001 From: jynam Date: Sat, 8 Jan 2022 20:53:59 +0900 Subject: [PATCH 4/6] =?UTF-8?q?=F0=9F=90=9B=20=20fix:=20=ED=81=B0=20?= =?UTF-8?q?=EC=82=AC=EC=9D=B4=EC=A6=88=20=EB=B2=84=ED=8A=BC=20=EC=8A=A4?= =?UTF-8?q?=ED=83=80=EC=9D=BC=20=EC=83=81=EC=88=98=EB=A5=BC=20=EC=97=AC?= =?UTF-8?q?=EB=9F=AC=20=ED=99=94=EB=A9=B4=20=EB=84=88=EB=B9=84=EC=97=90=20?= =?UTF-8?q?=EB=A7=9E=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/presentation/style/common/button.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/presentation/style/common/button.ts b/src/presentation/style/common/button.ts index 9644db0d..16c2d01b 100644 --- a/src/presentation/style/common/button.ts +++ b/src/presentation/style/common/button.ts @@ -7,7 +7,7 @@ export const CORAL_MAIN_BUTTON = css` `; export const BIG_BUTTON = css` - width: 354px; + width: 100%; height: 58px; border-radius: 14px; font-size: 16px; From 86b4a09a3384a2c930760bdcc922004310450fdf Mon Sep 17 00:00:00 2001 From: jynam Date: Sat, 8 Jan 2022 20:57:12 +0900 Subject: [PATCH 5/6] =?UTF-8?q?=F0=9F=94=A8=20refacter:=20=EB=84=A4?= =?UTF-8?q?=EC=9D=B4=EB=B0=8D=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/presentation/style/common/button.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/presentation/style/common/button.ts b/src/presentation/style/common/button.ts index 16c2d01b..bc0b75b1 100644 --- a/src/presentation/style/common/button.ts +++ b/src/presentation/style/common/button.ts @@ -6,7 +6,7 @@ export const CORAL_MAIN_BUTTON = css` color: ${COLOR.WHITE}; `; -export const BIG_BUTTON = css` +export const FULL_WIDTH_BUTTON = css` width: 100%; height: 58px; border-radius: 14px; From 4009d3febc45ec08f71136a418ef0f7a8163cba4 Mon Sep 17 00:00:00 2001 From: seojin kim <001106ksj@gmail.com> Date: Sat, 8 Jan 2022 23:31:04 +0900 Subject: [PATCH 6/6] =?UTF-8?q?=F0=9F=90=9Bfix:=20@style=EC=9D=84=20@style?= =?UTF-8?q?s=EB=A1=9C=20=EB=B3=80=EA=B2=BD=ED=95=98=EC=97=AC=20=ED=83=80?= =?UTF-8?q?=20=EB=AA=A8=EB=93=88=EA=B3=BC=EC=9D=98=20=EC=B6=A9=EB=8F=8C?= =?UTF-8?q?=EC=9D=84=20=EB=A7=89=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/presentation/style/common/button.ts | 2 +- tsconfig.paths.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/presentation/style/common/button.ts b/src/presentation/style/common/button.ts index bc0b75b1..add1ab7a 100644 --- a/src/presentation/style/common/button.ts +++ b/src/presentation/style/common/button.ts @@ -1,5 +1,5 @@ import { css } from 'styled-components'; -import { COLOR } from '@style/common/color'; +import { COLOR } from '@styles/common/color'; export const CORAL_MAIN_BUTTON = css` background-color: ${COLOR.CORAL_MAIN}; diff --git a/tsconfig.paths.json b/tsconfig.paths.json index bc21b849..e871e20f 100644 --- a/tsconfig.paths.json +++ b/tsconfig.paths.json @@ -5,7 +5,7 @@ "@components/*": ["src/presentation/components/*"], "@routes/*": ["src/presentation/routes/*"], "@pages/*": ["src/presentation/pages/*"], - "@style/*": ["src/presentation/style/*"], + "@styles/*": ["src/presentation/style/*"], "@utils/*": ["src/application/utils/*"], "@models/*": ["src/application/models/*"], "@stores/*": ["src/application/stores/*"],