fix: unify typography and review interactions
verify-and-publish / gate (push) Successful in 5m35s
verify-and-publish / publish (push) Has been skipped

This commit is contained in:
Marcos Paulo
2026-09-06 16:34:39 +00:00
parent ef5e8e8b42
commit 61de2f6270
9 changed files with 196 additions and 23 deletions
+2
View File
@@ -11,6 +11,7 @@ const { title, description, lang = 'en' } = Astro.props;
// bundled CSS because the legacy stylesheets @import the same file, so there
// is exactly one copy of the faces. See public/fonts/fonts.css.
import tokensStylesheet from '../styles/tokens.css?url';
import baseStylesheet from '../styles/base.css?url';
const fonts = `${import.meta.env.BASE_URL}fonts/fonts.css`.replace('//', '/');
---
@@ -24,6 +25,7 @@ const fonts = `${import.meta.env.BASE_URL}fonts/fonts.css`.replace('//', '/');
<meta name="description" content={description} />
<link rel="stylesheet" href={tokensStylesheet} />
<link rel="stylesheet" href={fonts} />
<link rel="stylesheet" href={baseStylesheet} />
<slot name="styles" />
</head>
<body>