Skip to content

Commit

Permalink
ci: apply formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ElianCodes authored and github-actions[bot] committed Jan 24, 2024
1 parent 192c31c commit 3b1fa31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/components/NewsLetterSignup.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,20 @@ const { skipText = false, tag } = Astro.props
{
!skipText && (
<>
<p class="font-obviously md:text-2xl font-light">Let's keep in Touch</p>
<p class="font-obviously font-light md:text-2xl">Let's keep in Touch</p>
<p class="mb-4 pt-2 text-astro-gray-200">
Enter your email to keep in the know with the latest updates from Astro.
</p>
</>
)
}
<form
action='https://buttondown.email/api/emails/embed-subscribe/withastro'
action="https://buttondown.email/api/emails/embed-subscribe/withastro"
method="post"
target="popupwindow"
onsubmit={`window.open('https://buttondown.email/withastro${tag ? `?tag=${tag}` : ``}', 'popupwindow')`}
onsubmit={`window.open('https://buttondown.email/withastro${
tag ? `?tag=${tag}` : ``
}', 'popupwindow')`}
class="flex flex-col justify-between"
>
<input
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Standalone.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ const { ...head } = Astro.props
</style>
</div>
</body>
</html>
</html>

0 comments on commit 3b1fa31

Please sign in to comment.