CHORE: Cleaning up codebase
All checks were successful
Build and Push Development Docker Image / build-and-push (push) Successful in 1m5s

Moved component content to be above inline style blocks
This commit is contained in:
2025-04-27 22:02:33 +01:00
parent da5f47a841
commit 051cd42fdb
4 changed files with 112 additions and 109 deletions

View File

@ -3,6 +3,18 @@
import ThemeSwitcher from "$lib/components/ThemeSwitcher.svelte";
</script>
<nav>
<a href = "/">//Profile</a>
<a href = "/repos">//Repos</a>
<a href = "/contact">//Contact</a>
<ThemeSwitcher />
</nav>
<div class="main-container fade">
<Toasts />
<slot />
</div>
<style>
.main-container {
margin-left: 10%;
@ -45,16 +57,4 @@
0% { opacity: 0; }
100% { opacity: 1; }
}
</style>
<nav>
<a href = "/">//Profile</a>
<a href = "/repos">//Repos</a>
<a href = "/contact">//Contact</a>
<ThemeSwitcher />
</nav>
<div class="main-container fade">
<Toasts />
<slot />
</div>
</style>