Merge branch 'develop' of codeberg.org:calckey/calckey into develop

This commit is contained in:
ThatOneCalculator 2023-05-29 12:22:10 -07:00
commit 97fe0dcedd
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<i v-if="warn" class="ph-warning ph-bold ph-lg"></i>
<i v-else class="ph-bold ph-lg" :class="icon ? `ph-${icon}` : 'ph-info'"></i>
<slot></slot>
<button v-if="closeable" class="_button close" @click.stop="close">
<button v-if="closeable" v-tooltip="i18n.ts.close" class="_button close" @click.stop="close">
<i class="ph-x ph-bold ph-lg"></i>
</button>
</div>
@ -11,6 +11,7 @@
<script lang="ts" setup>
import { ref } from "vue";
import { i18n } from "@/i18n";
const visible = ref(true);