Files
kopyl.dev.v2/src/routes/+layout.svelte
Anatoly Kopyl 567dc7c377
All checks were successful
Deploy / build-and-publish (push) Successful in 1m15s
Deploy / deploy (push) Successful in 12s
Title
2024-09-28 17:03:46 +03:00

33 lines
664 B
Svelte

<script lang="ts">
import "../app.css";
</script>
<svelte:head>
<title>Anatoly Kopyl</title>
<meta name="description" content="Fullstack developer with a passion for user-friendly design and providing value to the user." />
</svelte:head>
<slot />
<style lang="postcss">
:global(html) {
background: theme(colors.slate.950);
color: white;
}
:global(a) {
text-decoration: underline;
text-decoration-color: theme(colors.slate.500);
text-underline-offset: 4px;
transition: text-decoration-color .2s;
&:hover {
text-decoration-color: inherit;
}
}
:global(p:not(:last-of-type)) {
@apply mb-2;
}
</style>