I did some stuff with getting it set up and changing photos but i can't get the sqlite to work on prod

This commit is contained in:
2025-05-05 22:50:51 -05:00
parent 94edaa2783
commit 99c4781cb6
8 changed files with 105 additions and 105 deletions
+24 -2
View File
@@ -12,6 +12,12 @@
$inspect(data);
</script>
<nav>
<a href="/">Sludge</a>
<a href="/fest">Fest</a>
<a href="/pork">Pork</a>
</nav>
<main>
{@render children()}
</main>
@@ -44,6 +50,22 @@
// background-repeat: no-repeat;
background-attachment: fixed;
}
nav{
padding: 0 20%;
display: flex;
gap: 1rem;
justify-content: flex-end;
a{
text-decoration: none;
&:first-child{
margin-right: auto;
}
&:hover{
color: $orange;
}
}
}
main {
display: flex;
flex-direction: row;
@@ -62,11 +84,11 @@
font-size: 100%;
font: inherit;
color: inherit;
font-family: "Garamond",sans-serif;
font-family: "Garamond", serif;
vertical-align: baseline;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
text-size-adjust: none;
font-size-adjust: 0.75;
}