Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
András Borbás committed Mar 10, 2023
2 parents 5c65dce + 1f89971 commit 5a85308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/workshop/WorkshopCardBase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function WorkshopCardBase({
return (
<div className="overflow-hidden rounded-2xl bg-white/10 backdrop-blur">
<WorkshopHeader {...header} />
<div className="grid sm:grid-cols-3">
<div className="relative grid sm:grid-cols-3">
<div
className={clsx(
"order-2 my-4 px-8 py-10 sm:order-1 sm:my-0",
Expand All @@ -30,7 +30,7 @@ export function WorkshopCardBase({
{children}
</div>
{fullSizedImage && (
<div className="relative order-1 mt-8 aspect-1 h-full w-full border-white sm:order-2 sm:my-0 sm:border-l-[3px] ">
<div className="aspect-w-1 aspect-h-1 relative order-1 mt-8 h-full w-full border-white sm:order-2 sm:my-0 sm:border-l-[3px]">
<Image
src={fullSizedImage.src}
alt={fullSizedImage.alt}
Expand Down

0 comments on commit 5a85308

Please sign in to comment.