mirror of
https://github.com/immich-app/immich.git
synced 2026-05-22 07:32:32 -04:00
5e9bda7fab
chore: tailwind cannonical classes
24 lines
569 B
Svelte
24 lines
569 B
Svelte
<script lang="ts">
|
|
import { Modal, ModalBody } from '@immich/ui';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
html: string;
|
|
onClose: () => void;
|
|
}
|
|
|
|
let { html, onClose }: Props = $props();
|
|
</script>
|
|
|
|
<Modal title={$t('admin.template_email_preview')} {onClose} size="giant">
|
|
<ModalBody>
|
|
<div class="relative h-240 w-full overflow-hidden">
|
|
<iframe
|
|
title={$t('admin.template_email_preview')}
|
|
srcdoc={html}
|
|
class="absolute top-0 left-0 size-full border-none"
|
|
></iframe>
|
|
</div>
|
|
</ModalBody>
|
|
</Modal>
|