Skip to content

Commit

Permalink
style: 나의 경험 카드 간격 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
shinwonse committed Jul 30, 2023
1 parent 5f7186d commit df7d835
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@
}
}
}

.record-card {
margin-top: 12px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const MyRecordSearchResult = ({ keyword }: MyRecordSearchResultProps) => {
</div>
<ul>
{records.map((record, j) => (
<li key={`${record.recordId}-${j}`}>
<li className={cx('record-card')} key={`${record.recordId}-${j}`}>
<Link href={`/records/${record.recordId}`}>
<AlcoholPreview
name={record.alcoholName}
Expand Down

0 comments on commit df7d835

Please sign in to comment.