Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/app/(pages)/thanks-for-subscribing/client_page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { LargeBody } from '@components/LargeBody/index.js'
export const ThanksForSubscribingPage = () => {
return (
<Gutter>
<div className={['grid'].filter(Boolean).join(' ')}>
<div className={['cols-12'].filter(Boolean).join(' ')}>
<div className={['grid top-margin'].filter(Boolean).join(' ')}>
<div className={['cols-8'].filter(Boolean).join(' ')}>
<h1>Subscribed</h1>
<LargeBody>
Thank you for subscribing. You will now receive regular Payload updates to your email.
Expand Down
10 changes: 9 additions & 1 deletion src/css/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -306,4 +306,12 @@ dialog {

.visually-hidden {
@include visually-hidden;
}
}

.top-margin {
margin-top: 5rem;

@include small-break {
margin-top: 3rem;
}
}