diff --git a/src/app/my/_ui/MyProfileContent/index.tsx b/src/app/my/_ui/MyProfileContent/index.tsx index e1490448..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 daeeacd8..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) { diff --git a/tailwind.config.ts b/tailwind.config.ts index 2aab1a25..0ade1ef4 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -149,6 +149,8 @@ const config: Config = { }, "gray-c": { "100": "#ececec", + "200": "#e5e7eb", + "300": "#f9fafb", }, // 하드코딩된 회색 계열 색상 gray: { @@ -317,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",