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 && (
-
-
세션 자료
+
)}
{showRecording && (
)}
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;
}
/* 과제 */
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;