Skip to content

Commit

Permalink
Update art.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
cnnmon committed Oct 17, 2024
1 parent 40bbe34 commit 2c7ec86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/art.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function Section({ section }) {
<p>•───────• {title} •───────•</p>
{list.map((art, index) => (
<div key={index} className="flex flex-col mb-10 w-[100%]">
<div className="flex flex-col w-full justify-between gap-2 md:flex-row overflow-x-scroll">
<div className="flex flex-col w-full justify-between gap-2 md:flex-row mb-5 overflow-x-auto">
{art.images.map((image, imgIndex) =>
<Image
key={imgIndex}
Expand All @@ -30,7 +30,7 @@ function Section({ section }) {
/>
)}
</div>
<p className="font-bold">[<span dangerouslySetInnerHTML={{ __html: autolink(art.title) }} />]</p>
<p>[<span dangerouslySetInnerHTML={{ __html: autolink(art.title) }} />]</p>
</div>
))}
</>
Expand Down

0 comments on commit 2c7ec86

Please sign in to comment.