Skip to content

Commit a5d3233

Browse files
authored
Fix: Ensure minimum height for Block List Custom Views (#18398) (#19253)
1 parent 712cbe8 commit a5d3233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Umbraco.Web.UI.Client/src/packages/block/block-list/components/block-list-entry/block-list-entry.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ export class UmbBlockListEntryElement extends UmbLitElement implements UmbProper
349349
if (this._exposed) {
350350
return ext.component;
351351
} else {
352-
return html`<div>
352+
return html`<div style="min-height: var(--uui-size-16);">
353353
${ext.component}
354354
<umb-block-overlay-expose-button
355355
.contentTypeName=${this._contentTypeName}

0 commit comments

Comments
 (0)