This commit is contained in:
madrilene 2024-12-21 10:21:44 +01:00
commit 7133645b75
2 changed files with 7 additions and 6 deletions

View file

@ -46,8 +46,9 @@
<main id="main" class="flow">{{ content | safe }}</main>
{% include "partials/footer.njk" %}
<script type="module" src="/assets/scripts/components/custom-easteregg.js"></script>
<custom-easteregg></custom-easteregg>
{%- if meta.easteregg -%}
<script type="module" src="/assets/scripts/components/custom-easteregg.js"></script>
<custom-easteregg></custom-easteregg>
{%- endif -%}
</body>
</html>

View file

@ -1,12 +1,12 @@
.post h1 {
:where(.post) h1 {
font-size: var(--size-step-6);
}
.post h2 {
:where(.post) h2 {
font-size: var(--size-step-3);
}
.post h3 {
:where(.post) h3 {
font-size: var(--size-step-2);
}