Skip to content

Commit

Permalink
fix(presenter): restrict height of notes area (#1173)
Browse files Browse the repository at this point in the history
Co-authored-by: Anthony Fu <[email protected]>
  • Loading branch information
adamdehaven and antfu authored Nov 8, 2023
1 parent cb2c14a commit 430b8d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/internals/Presenter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ onMounted(() => {
<div v-if="__DEV__ && __SLIDEV_FEATURE_EDITOR__ && Editor && showEditor" class="grid-section note of-auto">
<Editor />
</div>
<div v-else class="grid-section note grid grid-rows-[1fr_min-content]">
<div v-else class="grid-section note grid grid-rows-[1fr_min-content] overflow-hidden">
<NoteEditor
v-if="__DEV__"
class="w-full max-w-full h-full overflow-auto p-2 lg:p-4"
Expand Down

0 comments on commit 430b8d7

Please sign in to comment.