adjusted bottom margin of footer; images on projects page now shrink on mobile

This commit is contained in:
2026-01-23 14:19:20 +01:00
parent 6c28a4c5f3
commit ae5e284032
19 changed files with 67 additions and 28 deletions

View File

@@ -0,0 +1,23 @@
<script lang="ts">
let { children } = $props();
</script>
<div class="main-content">
{@render children()}
</div>
<style>
.main-content {
width: 100%;
max-width: var(--page-width);
box-sizing: border-box;
margin: 0 auto;
padding: 0 24px;
}
@media screen and (max-width: 800px) {
.main-content {
padding: 0 8px;
}
}
</style>