This commit is contained in:
2023-08-18 01:32:23 +02:00
parent a988391944
commit 6dc6002061
12 changed files with 142 additions and 180 deletions

View File

@@ -1,6 +1,10 @@
<script setup lang="ts">
const appConfig = useAppConfig()
const getColor = computed(() => appConfig.ui.primary)
</script>
<template>
<CommandPalette />
<NuxtLoadingIndicator />
<NuxtLoadingIndicator :color="getColor" />
<section class="fixed inset-0 flex justify-center sm:px-8">
<div class="flex w-full max-w-7xl">
<div class="w-full bg-white ring-1 ring-zinc-100 dark:bg-zinc-900 dark:ring-zinc-300/20" />
@@ -13,6 +17,4 @@
</UContainer>
<Footer />
</div>
<UNotifications />
</template>