fix: overflow on log entries - closed #2738

This commit is contained in:
Liyas Thomas
2022-10-15 09:57:49 +05:30
parent a0ea00d0a3
commit 6e7d28db7b
4 changed files with 23 additions and 24 deletions

View File

@@ -58,10 +58,13 @@
</div>
</div>
<div
class="w-full h-full contents"
:class="{
'!flex flex-col flex-1 overflow-y-auto ': vertical,
}"
class="flex w-full h-full"
:class="[
{
'flex-col flex-1 overflow-y-auto ': vertical,
},
contentStyles,
]"
>
<slot></slot>
</div>
@@ -111,6 +114,10 @@ const props = defineProps({
type: String,
required: true,
},
contentStyles: {
type: String,
default: "",
},
})
const emit = defineEmits<{