Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SGM-6996 - Bug: Enterprise page not rendering correctly #7022

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Update Enterprise page not rendering correctly
  • Loading branch information
gitstart-sourcegraph committed Jun 20, 2024
commit 5a53fbc214573ad33cd7acbc91d32787958f00df
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
Loading