Big commit
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 37s

This commit is contained in:
2026-04-13 01:27:19 +02:00
parent 9748de4286
commit 6953b20b2c
29 changed files with 488 additions and 42 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import HeaderLinks from './HeaderLinks.vue';
import SiteOptions from './site_options/SiteOptions.vue';
import StickyHeader from './StickyHeader.vue';
import { accent } from '~/composables/theme'
const spritePath = computed(() => {
@@ -44,12 +45,13 @@ onBeforeUnmount(() => {
<HeaderLinks></HeaderLinks>
</div>
<div class="undertable">
<Sprite :path="spritePath" bottom="-141px" left="-75px"></Sprite>
<Sprite :path="spritePath" bottom="-60px" left="-75px"></Sprite>
</div>
<div class="header-container">
<SiteOptions></SiteOptions>
</div>
</div>
<StickyHeader></StickyHeader>
</template>
<style lang="scss" scoped>