Skip to content

Commit 450082a

Browse files
committed
Fix visual bug
1 parent a620845 commit 450082a

File tree

1 file changed

+2
-2
lines changed
  • src/app/(frontend)/[locale]/projects/[id]

1 file changed

+2
-2
lines changed

src/app/(frontend)/[locale]/projects/[id]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const Page = async ({ params }: Props) => {
222222
)
223223
})}
224224
<>
225-
<div className="hidden xl:block">
225+
<div className="hidden lg:block">
226226
{project.images?.slice(1).map((img) => (
227227
<div
228228
key={img.id}
@@ -240,7 +240,7 @@ const Page = async ({ params }: Props) => {
240240
</div>
241241
))}
242242
</div>
243-
<div className="block xl:hidden">
243+
<div className="block lg:hidden">
244244
{project.images?.slice(1).map((img, i, arr) => (
245245
<div
246246
key={img.id}

0 commit comments

Comments
 (0)