Make div a button
This commit is contained in:
parent
53f01701ad
commit
d93090f43b
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue