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

fix: fixes newsletter modal sizing #77

Merged
merged 1 commit into from
Sep 21, 2023
Merged
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
4 changes: 2 additions & 2 deletions src/_components/newsletter/Modal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
on:click_outside={() => (dismissed = true)}
class="mx-auto max-w-7xl sm:px-6 lg:px-8">
<div
class="relative isolate flex flex-col gap-10 overflow-hidden bg-thatBlue-800 px-6 py-24 shadow-2xl sm:rounded-3xl sm:px-24 xl:flex-row xl:items-center xl:py-32">
class="relative isolate flex flex-col gap-10 overflow-hidden bg-thatBlue-800 px-6 py-12 shadow-2xl sm:rounded-3xl sm:px-24 sm:py-24 xl:flex-row xl:items-center xl:py-32">
<div class="space-y-4 text-white">
<h2
class="max-w-2xl text-3xl font-bold tracking-tight sm:text-4xl xl:max-w-none xl:flex-auto">
Expand All @@ -41,7 +41,7 @@
</p>
</div>

<div class="w-2/3">
<div class="lg:w-2/3">
<HubspotForm formId={'newsletter-modal'} />
</div>

Expand Down