Skip to content

Commit

Permalink
meeting modal scroll fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pjaudiomv committed Nov 12, 2024
1 parent 1d359bb commit 6564452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resources/js/components/MeetingEditModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
dispatch('deleted', { meetingId: event.detail.meetingId });
}
const dialogClass = 'fixed top-0 start-0 end-0 h-[95vh] md:inset-0 z-50 w-full p-4 flex';
const defaultClass = 'modal-content relative flex flex-col mx-auto h-full min-h-[95vh] max-h-[95vh]';
const dialogClass = 'fixed top-0 start-0 end-0 h-[85vh] md:h-[95vh] h-modal md:inset-0 md:h-full z-50 w-full p-4 flex';
const defaultClass = 'modal-content min-h-[85vh] max-h-[85vh] md:min-h-[95vh] md:max-h-[95vh]';
const bodyClass = 'p-4 md:p-5 space-y-4 flex-1 overflow-y-auto overscroll-contain';
</script>

Expand Down

0 comments on commit 6564452

Please sign in to comment.