Skip to content

Commit

Permalink
update gap
Browse files Browse the repository at this point in the history
  • Loading branch information
imhson committed Aug 8, 2024
1 parent b9c113f commit 8cd2900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pages/artist/Mangas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function MangaList({ id }) {
return (
<div className='w-full'>
{data?.length ? (
<div className='grid grid-cols-[repeat(auto-fill,minmax(160px,1fr))] gap-y-8 gap-x-[22px]'>
<div className='grid grid-cols-[repeat(auto-fill,minmax(160px,1fr))] gap-y-8 gap-x-[22px] lg:gap-2.5'>
{data?.slice((page - 1) * 20, page * 20)?.map((comic, index) => (
<div key={index}>
<Manga {...comic} />
Expand Down

0 comments on commit 8cd2900

Please sign in to comment.