Skip to content

Commit

Permalink
fix: Update Enterprise page not rendering correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
gitstart-sourcegraph committed Jun 20, 2024
1 parent 0dcb6a5 commit 5a53fbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Enterprise/ImprovedVelocitySection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Heading } from '../Heading'

export const ImprovedVelocitySection: FunctionComponent = () => (
<ContentSection
className="relative z-10 flex max-w-[1232px] flex-col gap-6 md:flex-row"
className="relative z-10 grid max-w-[1232px] grid-cols-1 gap-6 md:grid-cols-2"
parentClassName="!md:px-[80px] !py-0"
>
<div className="flex h-[533px] flex-col justify-between px-0 py-16 md:px-10">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Enterprise/TrackVulnerabilitiesSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Heading, ContentSection } from '..'

export const TrackVulnerabilitiesSection: FunctionComponent = () => (
<ContentSection
className="flex max-w-[1232px] flex-col gap-6 md:flex-row"
className="grid max-w-[1232px] grid-cols-1 gap-6 md:grid-cols-2"
parentClassName="!md:px-[80px] !md:pb-[96px]"
>
<div className="md:pt-6 md:pl-16 md:pr-10">
Expand Down

0 comments on commit 5a53fbc

Please sign in to comment.