Files
pages/src/routes/projects/projectn5/devlog/+layout.svelte

28 lines
569 B
Svelte
Raw Normal View History

<script>
let { children } = $props();
</script>
{@render children()}
<style>
:root {
--color-highlight: #C76668 !important;
}
:global {
h2::before {
letter-spacing: -0.5rem;
content: ' ';
margin-right: 15px;
}
h3::before {
letter-spacing: -0.3rem;
content: ' ';
margin-right: 10px;
}
h4::before {
letter-spacing: -0.26rem;
content: ' ';
margin-right: 6px;
}
}
</style>