Skip to content

Commit

Permalink
Quartz sync: Jan 8, 2024, 10:16 AM
Browse files Browse the repository at this point in the history
  • Loading branch information
UncaughtCursor committed Jan 8, 2024
1 parent dc17a96 commit 95afad5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions quartz/components/Head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export default (() => {

return (
<head>
<title>{title}</title>
<title>{`${title} - ${cfg.pageTitle ?? 'Untitled Quartz'}`}</title>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content={title} />
<meta property="og:title" content={`${title} - ${cfg.pageTitle ?? 'Untitled Quartz'}`} />
<meta property="og:description" content={description} />
{cfg.baseUrl && <meta property="og:image" content={ogImagePath} />}
<meta property="og:width" content="1200" />
Expand Down
3 changes: 2 additions & 1 deletion quartz/components/PageTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ PageTitle.css = `
margin: 0;
}
.page-title > a > img {
height: 1.75rem;
height: 2rem;
margin: 0;
margin-right: 0.5rem;
transform: translateY(12.5%);
}
`

Expand Down

0 comments on commit 95afad5

Please sign in to comment.