Files
newznab-tmux/resources/forum/livewire-tailwind/views/components/modal.blade.php
T
2024-04-26 22:11:49 +02:00

22 lines
948 B
PHP

<div class="fixed top-0 right-0 bottom-0 left-0 bg-white/40 z-40 dark:bg-slate-900/40" {{ $attributes }}>
<div class="grid h-screen justify-items-center items-center" {!! !empty($onClose) ? "@click.self=\"{$onClose}\"" : '' !!}>
<div class="sm:min-w-96 bg-white shadow-lg rounded-md dark:bg-slate-700">
<div class="flex border-b border-slate-300 p-6 pb-4 dark:border-slate-500">
<div class="grow">
<h2>{{ $heading }}</h2>
</div>
@if (!empty($onClose))
<div class="pl-4 pt-1">
<a href="#" class="" @click="{{ $onClose }}">
@include ('forum::components.icons.x-mark')
</a>
</div>
@endif
</div>
<div class="p-6 pt-4 mt-2">
{{ $slot }}
</div>
</div>
</div>
</div>