Merge pull request #78 from TeamBNBN/fe/refactorLearningLectureDetail

[Front-End] refactor learning lecture detail
This commit is contained in:
FlashingFuture 2024-07-22 13:11:39 +09:00 committed by GitHub
commit e9405795d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ export default function LearningLectureDetailPage() {
],
};
return (
<main className={styles.previews}>
<section className={styles.previews}>
<ArticlePreview
to="notice"
title="공지사항"
@ -32,6 +32,6 @@ export default function LearningLectureDetailPage() {
contents={questions}
/>
<ArticlePreview title="커리큘럼" />
</main>
</section>
);
}

View File

@ -1,5 +1,5 @@
.previews {
display: flex;
flex-direction: column;
gap: 40px;
gap: 20px;
}