Skip to content

Commit 59a6ee8

Browse files
Fix margin header border width (#258)
1 parent 5032db2 commit 59a6ee8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/PageHeading/PageHeading.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22

33
const PageHeading = ({ children }: { children: React.ReactNode }) => (
4-
<h1 className="text-3xl tracking-tight font-extrabold text-neutral-50 sm:text-4xl my-8 border-b-2 pb-4">
4+
<h1 className="text-3xl tracking-tight font-extrabold text-neutral-50 sm:text-4xl mt-8 border-b pb-4">
55
{children}
66
</h1>
77
);

pages/articles/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const ArticlesPage = () => {
7070
</Head>
7171
<Layout>
7272
<div className="relative sm:mx-auto max-w-2xl mx-2">
73-
<div className="my-8 border-b-2 pb-4 flex justify-between items-center">
73+
<div className="mt-8 border-b pb-4 flex justify-between items-center">
7474
<h1 className="text-3xl tracking-tight font-extrabold text-neutral-50 sm:text-4xl ">
7575
{typeof tag === "string" ? (
7676
<div className="flex justify-center items-center">

0 commit comments

Comments
 (0)