Skip to content
Merged
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
2 changes: 1 addition & 1 deletion components/PageHeading/PageHeading.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";

const PageHeading = ({ children }: { children: React.ReactNode }) => (
<h1 className="text-3xl tracking-tight font-extrabold text-neutral-50 sm:text-4xl my-8 border-b-2 pb-4">
<h1 className="text-3xl tracking-tight font-extrabold text-neutral-50 sm:text-4xl mt-8 border-b pb-4">
{children}
</h1>
);
Expand Down
2 changes: 1 addition & 1 deletion pages/articles/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const ArticlesPage = () => {
</Head>
<Layout>
<div className="relative sm:mx-auto max-w-2xl mx-2">
<div className="my-8 border-b-2 pb-4 flex justify-between items-center">
<div className="mt-8 border-b pb-4 flex justify-between items-center">
<h1 className="text-3xl tracking-tight font-extrabold text-neutral-50 sm:text-4xl ">
{typeof tag === "string" ? (
<div className="flex justify-center items-center">
Expand Down