Files
archicratie-edition/src/components/GlossaryEntryBody.astro
Archicratia 9f88112aca
All checks were successful
SMOKE / smoke (push) Successful in 13s
CI / build-and-anchors (push) Successful in 1m4s
CI / build-and-anchors (pull_request) Successful in 35s
feat(glossary): add step 21 smart navigation
2026-04-26 13:03:45 +02:00

26 lines
494 B
Plaintext

<div class="glossary-entry-body">
<slot />
</div>
<style>
.glossary-entry-body{
margin-bottom: 16px;
}
.glossary-entry-body > :last-child{
margin-bottom: 0;
}
@media (max-width: 760px){
.glossary-entry-body{
margin-bottom: 12px;
}
}
:global(.glossary-entry-body h2),
:global(.glossary-entry-body h3),
:global(.glossary-relations h2),
:global(.glossary-relations h3){
scroll-margin-top: calc(var(--sticky-offset-px, 96px) + 18px);
}
</style>