This commit is contained in:
Zyronon
2025-12-23 19:48:04 +08:00
committed by GitHub
parent 30be8e1cf5
commit 560546c3bc
9 changed files with 392 additions and 224 deletions

View File

@@ -51,7 +51,7 @@ defineEmits(['click'])
justify-content: center;
outline: none;
text-align: center;
transition: .1s;
transition: all .3s;
user-select: none;
vertical-align: middle;
white-space: nowrap;
@@ -121,7 +121,7 @@ defineEmits(['click'])
color: var(--color-main-text);
&:hover:not(.disabled) {
opacity: 0.6;
background: var(--btn-info-hover);
}
}

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import {defineComponent, ref, useAttrs, watch, computed} from 'vue';
import {ref, useAttrs, watch, computed} from 'vue';
import Close from "@/components/icon/Close.vue";
import {useDisableEventListener} from "@/hooks/event.ts";