From 4f3b857b50cca765cffbffa9d453026835e344b7 Mon Sep 17 00:00:00 2001 From: plumbestie Date: Mon, 8 Jun 2026 14:23:07 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Fix]=20Header=20=ED=88=AC=EB=AA=85?= =?UTF-8?q?=EB=8F=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Header.module.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/components/Header.module.css b/frontend/src/components/Header.module.css index 9b3c98e..aebec1b 100644 --- a/frontend/src/components/Header.module.css +++ b/frontend/src/components/Header.module.css @@ -3,6 +3,7 @@ --header-bg: var(--white); --header-color: var(--gray600); --logo-color: var(--dark); + --drawer-bg: var(--white); } /* 다크 헤더 */ @@ -11,6 +12,7 @@ --header-color: var(--white); --logo-color: var(--main); border-bottom: none; + --drawer-bg: var(--black); } .header { @@ -151,6 +153,7 @@ transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease; box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15); + background: var(--drawer-bg); } .drawerOpen { From 693fb2efe5b7e8ef781e2dbbcd2b0b8e67f8c3dd Mon Sep 17 00:00:00 2001 From: plumbestie Date: Mon, 8 Jun 2026 15:00:16 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Fix]=20=EC=BB=A4=EB=A6=AC=ED=81=98?= =?UTF-8?q?=EB=9F=BC=20CSS=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../curriculum/CurriculumPage.module.css | 59 ++++--------------- 1 file changed, 10 insertions(+), 49 deletions(-) diff --git a/frontend/src/pages/curriculum/CurriculumPage.module.css b/frontend/src/pages/curriculum/CurriculumPage.module.css index de1c60c..18208af 100644 --- a/frontend/src/pages/curriculum/CurriculumPage.module.css +++ b/frontend/src/pages/curriculum/CurriculumPage.module.css @@ -73,14 +73,11 @@ border-radius: 20px; padding: 30px 30px 24px 30px; min-width: 200px; - width: calc(28% - 14px); - max-height: 380px; + width: calc(33.333% - 14px); display: flex; flex-direction: column; box-shadow: 0 1px 4px rgba(0,0,0,0.06); box-sizing: border-box; - overflow: hidden; - transition: max-height 0.3s ease; } .cardHeader { @@ -512,8 +509,6 @@ width: 100%; min-width: unset; padding: 20px; - height: auto; - overflow: visible; } .cardBody { @@ -521,47 +516,13 @@ flex: none; } - .cardTitle { - font-size: 1.1rem; - } - - .cardDate { - margin-left: 0; - } - - /* 폼 */ - .formOverlay { - padding: 0; - align-items: flex-start; - } - - .formCard { - width: 100%; - min-height: 100vh; - border-radius: 0; - padding: 28px 20px; - } - - .formGrid { - grid-template-columns: 1fr; - } - - .formRow2 { - grid-template-columns: 1fr; - } - - .saveFormBtn { - width: 100%; - } - - .statusBtns { - margin-left: 0; - margin-top: 6px; - width: 100%; - } - - .formSectionTitle { - flex-direction: column; - align-items: flex-start; - } + .cardTitle { font-size: 1.1rem; } + .cardDate { margin-left: 0; } + .formOverlay { padding: 0; align-items: flex-start; } + .formCard { width: 100%; min-height: 100vh; border-radius: 0; padding: 28px 20px; } + .formGrid { grid-template-columns: 1fr; } + .formRow2 { grid-template-columns: 1fr; } + .saveFormBtn { width: 100%; } + .statusBtns { margin-left: 0; margin-top: 6px; width: 100%; } + .formSectionTitle { flex-direction: column; align-items: flex-start; } } \ No newline at end of file