Files
infra-map/src/lib/components/PageHeader.svelte

17 lines
289 B
Svelte

<h1><slot></slot></h1>
<style lang="scss">
@font-face {
font-family: 'Reckless Neue';
font-style: normal;
src: url('/fonts/RecklessNeue-Regular.woff2') format('woff2');
}
h1 {
font-family: 'Reckless Neue';
font-weight: 400;
font-size: 2.3rem;
margin-top: 0;
}
</style>