From 210dd19358de773027790e8fcbd898adb579e760 Mon Sep 17 00:00:00 2001 From: plumbestie Date: Thu, 18 Jun 2026 18:33:51 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Chore]=20=ED=94=BC=EB=A1=9C=EC=B2=B4?= =?UTF-8?q?=ED=81=AC=20=EB=A9=94=EC=9D=B8=ED=99=94=EB=A9=B4=20(=EB=B6=80?= =?UTF-8?q?=EC=9B=90=EC=9A=A9)=20=EB=A9=94=EB=89=B4=20=EB=A6=AC=EB=84=A4?= =?UTF-8?q?=EC=9D=B4=EB=B0=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/pirocheck/PIroCheckMain.js | 6 +++--- frontend/src/pages/pirocheck/PIroCheckMain.module.css | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/pages/pirocheck/PIroCheckMain.js b/frontend/src/pages/pirocheck/PIroCheckMain.js index 092f8c5..546c6c2 100644 --- a/frontend/src/pages/pirocheck/PIroCheckMain.js +++ b/frontend/src/pages/pirocheck/PIroCheckMain.js @@ -13,9 +13,9 @@ function PIroCheckMain() { ]; const memberMenus = [ - { label: 'ATTENDANCE CHECK', path: '/pirocheck/attendance' }, - { label: 'ASSIGNMENT CHECK', path: '/pirocheck/assignment' }, - { label: 'DEPOSIT CHECK', path: '/pirocheck/deposit' }, + { label: '출석 체크', path: '/pirocheck/attendance' }, + { label: '과제 체크', path: '/pirocheck/assignment' }, + { label: '보증금 체크', path: '/pirocheck/deposit' }, ]; const menus = role === 'ADMIN' ? adminMenus : memberMenus; diff --git a/frontend/src/pages/pirocheck/PIroCheckMain.module.css b/frontend/src/pages/pirocheck/PIroCheckMain.module.css index 856186b..cb47066 100644 --- a/frontend/src/pages/pirocheck/PIroCheckMain.module.css +++ b/frontend/src/pages/pirocheck/PIroCheckMain.module.css @@ -15,7 +15,7 @@ border: none; border-radius: 10px; color: var(--main); - font-family: var(--font-title); + font-family: var(--font-main); font-size: 2rem; font-weight: 800; cursor: pointer; From e43e7b36396f4c73139b0621ad6216f152c4a9e1 Mon Sep 17 00:00:00 2001 From: plumbestie Date: Thu, 18 Jun 2026 19:03:05 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Chore]=20=EC=BB=A4=EB=A6=AC=ED=81=98?= =?UTF-8?q?=EB=9F=BC=20=EB=A7=81=ED=81=AC=20=EB=B2=94=EC=9C=84=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/pages/curriculum/CurriculumPage.js | 12 +++++------ .../curriculum/CurriculumPage.module.css | 20 ++++++++++++------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/frontend/src/pages/curriculum/CurriculumPage.js b/frontend/src/pages/curriculum/CurriculumPage.js index 5468022..fc7fe89 100644 --- a/frontend/src/pages/curriculum/CurriculumPage.js +++ b/frontend/src/pages/curriculum/CurriculumPage.js @@ -35,21 +35,19 @@ function SessionInfo({ session, isAdmin }) { {showDetail && {session.hostName}} {showDetail && ( -
- 세션 자료 +
{session.sessionMaterialUrl - ? {session.sessionMaterialName || '링크'} - : {session.sessionMaterialName || '-'} + ? 세션 자료{session.sessionMaterialName || '링크'} + : {session.sessionMaterialName || ''} }
)} {showRecording && (
{session.recordingUrl - ? 녹화본 - : - + ? 녹화본 {session.recordingPassword && PW : {session.recordingPassword}} + : } - {session.recordingPassword && PW : {session.recordingPassword}}
)}
diff --git a/frontend/src/pages/curriculum/CurriculumPage.module.css b/frontend/src/pages/curriculum/CurriculumPage.module.css index 18208af..e53fec9 100644 --- a/frontend/src/pages/curriculum/CurriculumPage.module.css +++ b/frontend/src/pages/curriculum/CurriculumPage.module.css @@ -187,15 +187,19 @@ white-space: nowrap; } -.sessionDetailRow { +.sessionDetailRow:hover .sessionDetailLabel, +.sessionDetailRow:hover .sessionLink, +.sessionDetailRow:hover .sessionPw, +.sessionDetailRow:hover .sessionDetailVal { + color: var(--dark); + transition: color 0.2s ease-in-out; +} +.sessionLink { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 3px 0 3px 26px; -} - -.sessionLink { font-family: var(--font-main); font-size: 0.9rem; color: var(--black); @@ -242,10 +246,12 @@ font-family: var(--font-main); font-size: 0.9rem; color: var(--black); - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; + display: flex; + align-items: center; + gap: 6px; text-align: right; + flex-wrap: nowrap; + overflow: hidden; } /* 과제 */