Initial commit
This commit is contained in:
23
src/routes/+layout.svelte
Normal file
23
src/routes/+layout.svelte
Normal file
@@ -0,0 +1,23 @@
|
||||
<script lang="ts">
|
||||
import "../app.css";
|
||||
</script>
|
||||
|
||||
<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;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user