Update ChannelPopup.svelte

This commit is contained in:
freearhey 2025-02-10 03:01:51 +03:00
parent e775b8aa9f
commit 141aac0e74

View file

@ -19,12 +19,12 @@
</script> </script>
<div <div
class="relative px-2 py-24 flex justify-center" class="relative px-2 pt-20 pb-24 flex justify-center"
role="presentation" role="presentation"
on:keypress on:keypress
on:click|self={close} on:click|self={close}
> >
<div class="relative bg-white rounded-md shadow dark:bg-gray-800 w-full max-w-[820px]"> <div class="relative bg-white rounded-lg shadow dark:bg-gray-800 w-full max-w-[820px]">
<div <div
class="flex justify-between items-center py-3 pl-5 pr-3 md:pr-4 rounded-t border-b dark:border-gray-700" class="flex justify-between items-center py-3 pl-5 pr-3 md:pr-4 rounded-t border-b dark:border-gray-700"
> >
@ -48,8 +48,8 @@
<CloseButton on:click={close} /> <CloseButton on:click={close} />
</div> </div>
</div> </div>
<div class="overflow-y-auto overflow-x-scroll w-full scrollbar-hide"> <div class="overflow-y-auto overflow-x-scroll max-w-full scrollbar-hide">
<div class="inline-table p-12 pt-10"> <div class="inline-table px-5 py-5 sm:py-10 sm:px-12">
<HTMLPreview data={channel} {close} /> <HTMLPreview data={channel} {close} />
</div> </div>
</div> </div>