Make div a button

This commit is contained in:
Christian Cueni 2022-07-28 08:14:24 +02:00
parent 53f01701ad
commit d93090f43b
1 changed files with 3 additions and 2 deletions

View File

@ -16,12 +16,13 @@ const emits = defineEmits(['closemodal'])
<div <div
v-if="show" v-if="show"
class="circle-overview px-4 py-16 lg:px-16 lg:py-24 fixed top-0 overflow-y-scroll bg-white h-full"> class="circle-overview px-4 py-16 lg:px-16 lg:py-24 fixed top-0 overflow-y-scroll bg-white h-full">
<div <button
type="button"
class="w-8 h-8 absolute right-4 top-4 cursor-pointer" class="w-8 h-8 absolute right-4 top-4 cursor-pointer"
@click="$emit('closemodal')" @click="$emit('closemodal')"
> >
<it-icon-close></it-icon-close> <it-icon-close></it-icon-close>
</div> </button>
<h1 class="">Überblick: Circle "{{ circle.title }}"</h1> <h1 class="">Überblick: Circle "{{ circle.title }}"</h1>