From 573a18b169f42af8fff5b2d91d91aba9dbcb524b Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Thu, 21 Nov 2024 16:10:01 +0100 Subject: [PATCH] Decrease spacing between Pricing and the next section (#6020) --- packages/web/docs/src/components/pricing-page.tsx | 4 ++-- packages/web/docs/src/components/pricing.tsx | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/packages/web/docs/src/components/pricing-page.tsx b/packages/web/docs/src/components/pricing-page.tsx index aa24d84fc..0da02733b 100644 --- a/packages/web/docs/src/components/pricing-page.tsx +++ b/packages/web/docs/src/components/pricing-page.tsx @@ -16,9 +16,9 @@ export function PricingPage() { - + - + diff --git a/packages/web/docs/src/components/pricing.tsx b/packages/web/docs/src/components/pricing.tsx index 37d21630e..1c00eb924 100644 --- a/packages/web/docs/src/components/pricing.tsx +++ b/packages/web/docs/src/components/pricing.tsx @@ -71,9 +71,15 @@ function PlanFeaturesListItem(props: HTMLAttributes) { const USAGE_DATA_RETENTION_EXPLAINER = 'How long your GraphQL operations are stored on Hive'; const OPERATIONS_EXPLAINER = 'GraphQL operations reported to GraphQL Hive'; -export function Pricing({ children }: { children?: ReactNode }): ReactElement { +export function Pricing({ + children, + className, +}: { + children?: ReactNode; + className?: string; +}): ReactElement { return ( -
+
{children}