Skip to content

Commit

Permalink
Revert "fix: modal overflow"
Browse files Browse the repository at this point in the history
This reverts commit 7ab54f4.
  • Loading branch information
he3als committed Oct 17, 2024
1 parent e54ace6 commit e8d2452
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/ui/src/components/modal/NewModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@click="() => (closable ? hide() : {})"
/>
<div class="modal-container experimental-styles-within" :class="{ shown: visible }">
<div class="modal-body flex flex-col bg-bg-raised rounded-2xl !overflow-visible">
<div class="modal-body flex flex-col bg-bg-raised rounded-2xl">
<div
class="grid grid-cols-[auto_min-content] items-center gap-12 p-6 border-solid border-0 border-b-[1px] border-button-bg max-w-full"
>
Expand All @@ -36,8 +36,8 @@
</button>
</ButtonStyled>
</div>
<div class="p-6 overflow-visible">
<slot>You just lost the game.</slot>
<div class="overflow-y-auto p-6">
<slot> You just lost the game.</slot>
</div>
</div>
</div>
Expand Down

0 comments on commit e8d2452

Please sign in to comment.