design: gap 수치 수정

This commit is contained in:
jhynsoo 2024-07-22 13:10:05 +09:00
parent 56d2d775e6
commit a739938572
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;
}