Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
neo773 committed Aug 17, 2024
1 parent 3f64ff2 commit b2b87cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/home/Configuration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Section from "../shared/Section"

const Configuration = (): JSX.Element => {
return (
<Section className="flex flex-col lg:flex-row justify-center gap-10" innerClassName="flex gap-10">
<Section className="flex flex-col lg:flex-row justify-center gap-10" innerClassName="md:flex md:gap-10">
<div className="max-w-2xl">
<Heading as="h2" className="text-title-large sm:text-display-tiny lg:text-display-small mb-SPACE_04">
Get <span className="rounded-lg px-SPACE_02 bg-tailCall-yellow">Started</span>
Expand Down
2 changes: 1 addition & 1 deletion src/components/shared/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Section = ({
}): JSX.Element => {
return (
<section className={clsx("w-full px-8 py-6 md:px-24 lg:px-36 lg:py-20", className)}>
<div className={clsx("max-w-7xl mx-auto", innerClassName)}>{children}</div>
<div className={clsx("w-full max-w-7xl mx-auto", innerClassName)}>{children}</div>
</section>
)
}
Expand Down

0 comments on commit b2b87cc

Please sign in to comment.