design: 마이페이지 수강중인 강의 카드 호버 효과 추가
This commit is contained in:
parent
a01f63fbe9
commit
7cb645f8fc
@ -23,18 +23,18 @@ export default function LearningLecturesPage() {
|
|||||||
to={`/lecture/${lecture.id}/class`}
|
to={`/lecture/${lecture.id}/class`}
|
||||||
className={styles.card}
|
className={styles.card}
|
||||||
>
|
>
|
||||||
{lecture.image ? (
|
<div className={styles.thumbnail}>
|
||||||
<img
|
{lecture.image ? (
|
||||||
src={`${STATIC_URL}${lecture.image}`}
|
<img
|
||||||
alt={lecture.title}
|
src={`${STATIC_URL}${lecture.image}`}
|
||||||
className={styles.thumbnail}
|
alt={lecture.title}
|
||||||
/>
|
className={styles.thumbnail}
|
||||||
) : (
|
/>
|
||||||
<div className={styles.thumbnail}>
|
) : (
|
||||||
<CompassIcon />
|
<CompassIcon />
|
||||||
</div>
|
)}
|
||||||
)}
|
</div>
|
||||||
<div>{lecture.title}</div>
|
<div className={styles.title}>{lecture.title}</div>
|
||||||
</Link>
|
</Link>
|
||||||
))
|
))
|
||||||
) : (
|
) : (
|
||||||
|
@ -23,9 +23,30 @@
|
|||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
overflow: hidden;
|
border-radius: 20px;
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
& > .title {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
transition: font-weight 0.25s cubic-bezier(0, 0, 0.5, 1);
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.4;
|
||||||
|
font-weight: 400;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
& > .thumbnail {
|
||||||
|
box-shadow: 2px 4px 8px #00000029;
|
||||||
|
scale: 1.05;
|
||||||
|
}
|
||||||
|
|
||||||
|
& > .title {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumbnail {
|
.thumbnail {
|
||||||
@ -40,4 +61,13 @@
|
|||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
stroke: var(--text-color-secondary);
|
stroke: var(--text-color-secondary);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
overflow: hidden;
|
||||||
|
transition:
|
||||||
|
box-shadow 0.25s cubic-bezier(0, 0, 0.5, 1),
|
||||||
|
scale 0.25s cubic-bezier(0, 0, 0.5, 1),
|
||||||
|
rotate 0.25s cubic-bezier(0, 0, 0.5, 1);
|
||||||
|
|
||||||
|
& > img {
|
||||||
|
background-color: var(--background-secondary);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user