Skip to content

Commit

Permalink
Fixed footer
Browse files Browse the repository at this point in the history
  • Loading branch information
colecrouter committed Oct 25, 2024
1 parent 12e8708 commit 6b64d32
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@
</main>

<!-- FOOTER -->
<small
>Some assets utilized belong to ConcernedApe. Used under Fair Use and not
affiliated with ConcernedApe or Stardew Valley</small>
<small>
Some assets utilized belong to ConcernedApe. Used under Fair Use and not
affiliated with ConcernedApe or Stardew Valley
</small>

<!-- SEO data -->
<footer hidden>
Expand Down Expand Up @@ -90,13 +91,15 @@
margin: 0;
padding: 0;
font-family: sans-serif;
position: relative;
font-size: 16px;
background-image: url(/img/wallpaper.jpg);
background-size: cover;
background-position: center;
background-attachment: fixed;
image-rendering: pixelated;
text-shadow: -0.05em 0.05em 0 rgba(0, 0, 0, 0.2);
min-height: 100dvh;
}
main {
Expand All @@ -106,6 +109,7 @@
justify-content: start;
padding-top: 5rem;
min-height: 100%;
padding-bottom: 4rem;
}
:global(code) {
Expand Down Expand Up @@ -226,9 +230,10 @@
}
small {
position: fixed;
position: absolute;
bottom: 0;
left: 0;
margin: 0.1rem;
/* margin: 0.1rem; */
z-index: -1;
padding: 4px;
}
</style>

0 comments on commit 6b64d32

Please sign in to comment.