tweak styling

This commit is contained in:
2023-04-22 01:39:53 +00:00
parent 42039b0bac
commit 3c80fbab21
9 changed files with 364 additions and 48 deletions

View File

@ -19,7 +19,7 @@ export default function Layout({
<div className="header">
<h1>{title}</h1>
<h3>{description}</h3>
<p>Published: {published}</p>
<h4>Published: {published}</h4>
{updated && <p>Last updated: {updated}</p>}
</div>
);
@ -27,7 +27,7 @@ export default function Layout({
const withChildren: React.FC<PropsWithChildren> = ({ children }) => (
<Base>
{header}
<hr />
<div style={{ paddingTop: "2em" }} />
{children}
</Base>
);