From 40fc20e0c5ef5be8f0bc765e67f38041fb416a49 Mon Sep 17 00:00:00 2001 From: enunsnv Date: Sat, 10 Jan 2026 00:41:08 +0900 Subject: [PATCH 1/5] =?UTF-8?q?style:=20border=20radius=20=EA=B8=B0?= =?UTF-8?q?=EB=B3=B8=EA=B0=92(--radius)=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/globals.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/globals.css b/src/styles/globals.css index 49dcff3b..e1448a9f 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -70,3 +70,7 @@ .animate-slide-in { animation: slide-in 0.3s ease-out; } + +:root { + --radius: 8px; +} From 0ac1f1edd325e44c9294dcb58d732786e5fbc52b Mon Sep 17 00:00:00 2001 From: enunsnv Date: Sun, 11 Jan 2026 15:56:14 +0900 Subject: [PATCH 2/5] =?UTF-8?q?style:=20gray-c=20=EC=83=89=EC=83=81=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20=EB=B0=8F=20SearchBar=20border=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/university/search/SearchBar.tsx | 2 +- tailwind.config.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/university/search/SearchBar.tsx b/src/app/university/search/SearchBar.tsx index daeeacd8..d51459bc 100644 --- a/src/app/university/search/SearchBar.tsx +++ b/src/app/university/search/SearchBar.tsx @@ -59,7 +59,7 @@ const SearchBar = ({ initText }: SearchBarProps) => {
diff --git a/tailwind.config.ts b/tailwind.config.ts index 2aab1a25..209a3adb 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -149,6 +149,7 @@ const config: Config = { }, "gray-c": { "100": "#ececec", + "200": "#e5e7eb", }, // 하드코딩된 회색 계열 색상 gray: { From ac3ce56692ba4f84c1dcd3d8b6f5ca8171f95f91 Mon Sep 17 00:00:00 2001 From: enunsnv Date: Sun, 11 Jan 2026 17:01:27 +0900 Subject: [PATCH 3/5] =?UTF-8?q?style:=20gray-c=20=EC=83=89=EC=83=81=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20=EB=B0=8F=20MyProfileContent=20bg=20?= =?UTF-8?q?=EC=83=89=EC=83=81=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/my/_ui/MyProfileContent/index.tsx | 2 +- tailwind.config.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/my/_ui/MyProfileContent/index.tsx b/src/app/my/_ui/MyProfileContent/index.tsx index e1490448..5f6767ac 100644 --- a/src/app/my/_ui/MyProfileContent/index.tsx +++ b/src/app/my/_ui/MyProfileContent/index.tsx @@ -80,7 +80,7 @@ const MyProfileContent = () => {

{/* Profile Card */} -
+
diff --git a/tailwind.config.ts b/tailwind.config.ts index 209a3adb..502b5451 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -150,6 +150,7 @@ const config: Config = { "gray-c": { "100": "#ececec", "200": "#e5e7eb", + "300": "#f9fafb", }, // 하드코딩된 회색 계열 색상 gray: { From f3ce36222f279843677be25ef1be0b4efb44eba8 Mon Sep 17 00:00:00 2001 From: enunsnv Date: Wed, 21 Jan 2026 16:33:38 +0900 Subject: [PATCH 4/5] =?UTF-8?q?style:=20border=20radius=20=EA=B0=92?= =?UTF-8?q?=EC=9D=84=20=EA=B3=A0=EC=A0=95=20px=20=EA=B0=92=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/globals.css | 4 ---- tailwind.config.ts | 6 +++--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/styles/globals.css b/src/styles/globals.css index e1448a9f..49dcff3b 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -70,7 +70,3 @@ .animate-slide-in { animation: slide-in 0.3s ease-out; } - -:root { - --radius: 8px; -} diff --git a/tailwind.config.ts b/tailwind.config.ts index 502b5451..0ade1ef4 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -319,9 +319,9 @@ const config: Config = { height: "height", }, borderRadius: { - lg: "var(--radius)", - md: "calc(var(--radius) - 2px)", - sm: "calc(var(--radius) - 4px)", + lg: "8px", + md: "6px", + sm: "4px", }, animation: { "slide-up": "slideUp 0.3s ease-out", From 2ee294a62ef80210e01658ce509fd19a877c8c45 Mon Sep 17 00:00:00 2001 From: enunsnv Date: Thu, 22 Jan 2026 01:05:07 +0900 Subject: [PATCH 5/5] =?UTF-8?q?fix:=20prettier=20=EB=B3=80=EB=8F=99=20?= =?UTF-8?q?=EC=82=AC=ED=95=AD=EC=97=90=20=EB=94=B0=EB=A5=B8=20=EC=A0=95?= =?UTF-8?q?=EB=A0=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/my/_ui/MyProfileContent/index.tsx | 2 +- src/app/university/search/SearchBar.tsx | 2 +- src/styles/globals.css | 15 +++++++++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/src/app/my/_ui/MyProfileContent/index.tsx b/src/app/my/_ui/MyProfileContent/index.tsx index 5f6767ac..0d8b8dfa 100644 --- a/src/app/my/_ui/MyProfileContent/index.tsx +++ b/src/app/my/_ui/MyProfileContent/index.tsx @@ -80,7 +80,7 @@ const MyProfileContent = () => {

{/* Profile Card */} -
+
diff --git a/src/app/university/search/SearchBar.tsx b/src/app/university/search/SearchBar.tsx index d51459bc..58feba09 100644 --- a/src/app/university/search/SearchBar.tsx +++ b/src/app/university/search/SearchBar.tsx @@ -59,7 +59,7 @@ const SearchBar = ({ initText }: SearchBarProps) => {
diff --git a/src/styles/globals.css b/src/styles/globals.css index 49dcff3b..d734175e 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -4,7 +4,11 @@ @layer base { html { - font-family: var(--font-pretendard), system-ui, -apple-system, sans-serif; + font-family: + var(--font-pretendard), + system-ui, + -apple-system, + sans-serif; font-synthesis: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; @@ -13,7 +17,10 @@ body { @apply m-0 bg-white; - font-family: system-ui, -apple-system, sans-serif; + font-family: + system-ui, + -apple-system, + sans-serif; } } @@ -39,7 +46,7 @@ } .score-table th { - @apply typo-sb-7 text-black; + @apply text-black typo-sb-7; } .score-table tbody tr { @@ -47,7 +54,7 @@ } .score-table td { - @apply min-w-[30px] flex-1 overflow-hidden whitespace-nowrap typo-medium-3 text-gray-600; + @apply min-w-[30px] flex-1 overflow-hidden whitespace-nowrap text-gray-600 typo-medium-3; } .score-table td:nth-of-type(5) {