22 lines
734 B
Vue
22 lines
734 B
Vue
<template>
|
|
<div class="fixed z-40 top-0 left-0 w-full h-full flex items-center justify-center p-6">
|
|
<div class="relative rounded-lg p-8 bg-zinc-800 shadow-2xl shadow-black border border-zinc-700 border-solid w-full max-w-xl">
|
|
<a href="#" class="absolute top-0 right-0 mt-6 mr-6" @click.prevent="$emit('close')">
|
|
<svg-sprite src="close" class="text-zinc-400 w-6 h-6"></svg-sprite>
|
|
</a>
|
|
<h3 class="font-semibold text-primary-200 text-xl" v-html="heading"></h3>
|
|
<div class="text-primary-100">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
heading: {},
|
|
},
|
|
};
|
|
</script>
|