Skip to content

Commit

Permalink
fix unaccessable content on cardview modal when the screen is not wid…
Browse files Browse the repository at this point in the history
…e (mobile)
  • Loading branch information
patrickwieth committed Oct 30, 2024
1 parent 3af35cc commit 3c5f113
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/modals/ModalFrame.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="fixed top-0 flex h-[100vh] w-full bg-black/50">
<div class="fixed top-0 flex h-[100vh] w-full bg-black/50 overflow-scroll">
<ModalInner
:class="['p-10', 'z-100', 'm-auto'].concat(props.class)"
:heading="heading"
Expand Down
2 changes: 1 addition & 1 deletion src/views/AdvancedCardViewPage.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="bg-black text-white flex lg:h-[80vh] p-16 lg:p-8" />
<div class="h-screen bg-black text-white flex lg:h-[80vh] p-16 lg:p-8" />
<CardviewModal
:id="state.id"
@close="$router.back()"
Expand Down

0 comments on commit 3c5f113

Please sign in to comment.