feat: put theme swap in the style settings

This commit is contained in:
Julien Calixte
2025-11-07 16:44:12 +01:00
parent e90570ae5d
commit 9fc18926ab
3 changed files with 6 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
<script lang="ts" setup>
import ThemeSwap from "@/components/ThemeSwap.vue"
import FontChange from "@/components/FontChange.vue"
defineProps<{ user: string; repo: string }>()
@@ -130,14 +129,13 @@ defineProps<{ user: string; repo: string }>()
</router-link>
<dialog id="font_modal" class="modal">
<div class="modal-box">
<h3 class="text-lg font-bold">Font settings</h3>
<h3 class="text-lg font-bold">Style settings</h3>
<font-change />
</div>
<form method="dialog" class="modal-backdrop">
<button></button>
</form>
</dialog>
<theme-swap />
</header>
</template>