Skip to content

Commit

Permalink
💄 Style - bottom margin px->rem으로 변경 #40
Browse files Browse the repository at this point in the history
  • Loading branch information
bianbbc87 committed May 3, 2024
1 parent 1e24af7 commit ff7d6f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/seminar/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const SeminarDetailPage = () => {
<SeminarDetailReview key={`${data.id}_review`} />

</div>
<div className="h-[120px]"></div>
<div className="h-[7.5rem]"></div>
</div>
</section>;
};
Expand Down
2 changes: 1 addition & 1 deletion src/app/seminar/open/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const OpenSeminarDetailPage = () => {
{/* information */}
<OpenSeminarDetailInformation key={`${seminar.id}_information`} data={seminar}/>
</div>
<div className="h-[120px]"></div>
<div className="h-[7.5rem]"></div>
</div>
</section>;
};
Expand Down
2 changes: 1 addition & 1 deletion src/app/seminar/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const SeminarPage = () => {

{/* seminar list */}
<SeminarThumbnailList selectedCategory={selectedCategory} />
<div className="h-[120px]"></div>
<div className="h-[7.5rem]"></div>
</div>
</div>
</section>;
Expand Down

0 comments on commit ff7d6f2

Please sign in to comment.