Skip to content

Commit

Permalink
Merge branch 'cmanallen/lost-in-the-haystack' of https://github.com/g…
Browse files Browse the repository at this point in the history
…etsentry/sentry.engineering into cmanallen/lost-in-the-haystack
  • Loading branch information
cmanallen committed Sep 19, 2023
2 parents d12cfb6 + 89a0d48 commit 21106fa
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion components/MobileNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const MobileNav = () => {
</svg>
</button>
<div
className={`fixed top-0 left-0 z-10 h-full w-full transform bg-gray-200 opacity-95 duration-300 ease-in-out dark:bg-gray-800 ${
className={`fixed left-0 top-0 z-10 h-full w-full transform bg-gray-200 opacity-95 duration-300 ease-in-out dark:bg-gray-800 ${
navShow ? 'translate-x-0' : 'translate-x-full'
}`}
>
Expand Down
4 changes: 2 additions & 2 deletions components/NewsletterForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ const NewsletterForm = ({ title = 'Subscribe to the newsletter' }) => {
disabled={subscribed}
/>
</div>
<div className="mt-2 flex w-full rounded-md shadow-sm sm:mt-0 sm:ml-3">
<div className="mt-2 flex w-full rounded-md shadow-sm sm:ml-3 sm:mt-0">
<button
className={`w-full rounded-md bg-primary-500 py-2 px-4 font-medium text-white sm:py-0 ${
className={`w-full rounded-md bg-primary-500 px-4 py-2 font-medium text-white sm:py-0 ${
subscribed ? 'cursor-default' : 'hover:bg-primary-700 dark:hover:bg-primary-400'
} focus:outline-none focus:ring-2 focus:ring-primary-600 focus:ring-offset-2 dark:ring-offset-black`}
type="submit"
Expand Down
2 changes: 1 addition & 1 deletion components/Pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Pagination({ totalPages, currentPage }) {
const nextPage = parseInt(currentPage) + 1 <= parseInt(totalPages)

return (
<div className="space-y-2 pt-6 pb-8 md:space-y-5">
<div className="space-y-2 pb-8 pt-6 md:space-y-5">
<nav className="flex justify-between">
{!prevPage && (
<button rel="previous" className="cursor-auto disabled:opacity-50" disabled={!prevPage}>
Expand Down
2 changes: 1 addition & 1 deletion components/ScrollTopAndComment.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const ScrollTopAndComment = () => {
}
return (
<div
className={`fixed right-8 bottom-8 hidden flex-col gap-3 ${show ? 'md:flex' : 'md:hidden'}`}
className={`fixed bottom-8 right-8 hidden flex-col gap-3 ${show ? 'md:flex' : 'md:hidden'}`}
>
{siteMetadata.comment.provider && (
<button
Expand Down
2 changes: 1 addition & 1 deletion components/TOCInline.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const TOCInline = ({
<>
{asDisclosure ? (
<details open>
<summary className="ml-6 pt-2 pb-2 text-xl font-bold">Table of Contents</summary>
<summary className="ml-6 pb-2 pt-2 text-xl font-bold">Table of Contents</summary>
<div className="ml-6">{tocList}</div>
</details>
) : (
Expand Down
2 changes: 1 addition & 1 deletion components/comments/Disqus.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Disqus = ({ frontMatter }) => {
}

return (
<div className="pt-6 pb-6 text-center text-gray-700 dark:text-gray-300">
<div className="pb-6 pt-6 text-center text-gray-700 dark:text-gray-300">
{enableLoadComments && <button onClick={LoadComments}>Load Comments</button>}
<div className="disqus-frame" id={COMMENTS_ID} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/comments/Giscus.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Giscus = () => {
}, [LoadComments])

return (
<div className="pt-6 pb-6 text-center text-gray-700 dark:text-gray-300">
<div className="pb-6 pt-6 text-center text-gray-700 dark:text-gray-300">
{enableLoadComments && <button onClick={LoadComments}>Load Comments</button>}
<div className="giscus" id={COMMENTS_ID} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/comments/Utterances.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Utterances = () => {

// Added `relative` to fix a weird bug with `utterances-frame` position
return (
<div className="pt-6 pb-6 text-center text-gray-700 dark:text-gray-300">
<div className="pb-6 pt-6 text-center text-gray-700 dark:text-gray-300">
{enableLoadComments && <button onClick={LoadComments}>Load Comments</button>}
<div className="utterances-frame relative" id={COMMENTS_ID} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion layouts/ListLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function ListLayout({ posts, title, initialDisplayPosts = [], pag
return (
<>
<div className="divide-y divide-gray-200 dark:divide-gray-700">
<div className="space-y-2 pt-6 pb-8 md:space-y-5">
<div className="space-y-2 pb-8 pt-6 md:space-y-5">
<h1 className="text-3xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-4xl sm:leading-10 md:text-6xl md:leading-14">
{title}
</h1>
Expand Down
2 changes: 1 addition & 1 deletion layouts/PostSimple.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function PostLayout({ frontMatter, authorDetails, next, prev, chi
style={{ gridTemplateRows: 'auto 1fr' }}
>
<div className="divide-y divide-gray-200 dark:divide-gray-700 xl:col-span-3 xl:row-span-2 xl:pb-0">
<div className="prose max-w-none pt-10 pb-8 dark:prose-dark">{children}</div>
<div className="prose max-w-none pb-8 pt-10 dark:prose-dark">{children}</div>
</div>
<Comments frontMatter={frontMatter} />
<footer>
Expand Down
2 changes: 1 addition & 1 deletion pages/404.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default function FourZeroFour() {
<>
<PageSEO title={`Page Not Found - ${siteMetadata.title}`} />
<div className="flex flex-col items-start justify-start md:mt-24 md:flex-row md:items-center md:justify-center md:space-x-6">
<div className="space-x-2 pt-6 pb-8 md:space-y-5">
<div className="space-x-2 pb-8 pt-6 md:space-y-5">
<h1 className="text-6xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 md:border-r-2 md:px-6 md:text-8xl md:leading-14">
404
</h1>
Expand Down

0 comments on commit 21106fa

Please sign in to comment.