lint code

This commit is contained in:
2023-09-04 17:34:02 +02:00
parent eedd94ba0f
commit b5773f1be5
4 changed files with 52 additions and 47 deletions

View File

@@ -1,3 +1,12 @@
<script setup lang="ts">
defineProps({
navigation: {
type: Boolean,
default: true,
},
})
</script>
<template>
<header class="z-30 sticky top-0 left-0 flex justify-center w-full">
<div class="w-full px-4 sm:px-6 lg:px-8 sm:mx-8 max-w-7xl py-4 flex justify-between bg-white dark:bg-zinc-900 border-b border-zinc-100 dark:border-zinc-300/10">
@@ -15,13 +24,3 @@
</div>
</header>
</template>
<script setup lang="ts">
defineProps({
navigation: {
type: Boolean,
default: true,
},
})
</script>