style: format with new style

This commit is contained in:
taskylizard
2024-01-25 16:32:45 +00:00
parent bc3bbaafeb
commit ef422dcda8
43 changed files with 686 additions and 583 deletions

View File

@@ -1,12 +1,15 @@
<script setup lang="ts">
import { ref } from "vue";
import Feedback from "./Feedback.vue";
import { ref } from 'vue'
import Feedback from './Feedback.vue'
const showModal = ref(false);
const showModal = ref(false)
</script>
<template>
<button class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled" @click="showModal = true" />
<button
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
@click="showModal = true"
/>
<Teleport to="body">
<Transition name="modal">
@@ -14,7 +17,9 @@ const showModal = ref(false);
<div class="modal-container">
<Feedback />
<div class="model-footer">
<button class="modal-button" @click="showModal = false">Close</button>
<button class="modal-button" @click="showModal = false">
Close
</button>
</div>
</div>
</div>