Skip to content

Commit

Permalink
fix(SLB-325): set a min-height on default hero section
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiasimonato committed Apr 18, 2024
1 parent b0009a1 commit 5aeef79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/components/Organisms/PageHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function PageHero(props: NonNullable<PageFragment['hero']>) {

function DefaultHero(props: NonNullable<PageFragment['hero']>) {
return (
<section className="relative isolate overflow-hidden bg-gray-900 py-24 sm:py-32">
<section className="relative isolate overflow-hidden bg-gray-900 py-24 sm:py-32 min-h-[19rem] lg:min-h-[25rem]">
{props.image ? (
<Image
alt={props.image.alt}
Expand Down

0 comments on commit 5aeef79

Please sign in to comment.