Skip to content

Commit

Permalink
fix(katzencore): Added Element min-height
Browse files Browse the repository at this point in the history
  • Loading branch information
maxlkatze committed Jul 27, 2024
1 parent 1ac9b61 commit 06ce4e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"dependencies": {
"@nuxtjs/tailwindcss": "^6.12.1",
"@pinia/nuxt": "^0.5.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tiptap/extension-highlight": "^2.5.2",
"@tiptap/extension-placeholder": "^2.5.1",
"@tiptap/pm": "^2.5.1",
Expand Down
7 changes: 6 additions & 1 deletion src/runtime/components/views/EditView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ watch(mobileView, () => {
class="size-full bg-gray-300"
:class="mobileView?['max-w-[390px]', 'max-h-[844px]']:[]"
>
<div class="size-full bg-white overflow-y-scroll ">
<div class="size-full bg-white overflow-y-scroll route-container">
<Route
v-if="Route"
:component="Route"
Expand Down Expand Up @@ -774,4 +774,9 @@ watch(mobileView, () => {
.ontop {
z-index: 1000;
}
.route-container *[kat-e] {
min-height: 12px;
min-width: 12px;
}
</style>

0 comments on commit 06ce4e5

Please sign in to comment.