diff --git a/src/ui/src/components/core/layout/CoreHorizontalStack.vue b/src/ui/src/components/core/layout/CoreHorizontalStack.vue index 07573aed1..734c8cfd3 100644 --- a/src/ui/src/components/core/layout/CoreHorizontalStack.vue +++ b/src/ui/src/components/core/layout/CoreHorizontalStack.vue @@ -54,4 +54,8 @@ const fields = inject(injectionKeys.evaluatedFields); width: 100%; flex-wrap: wrap; } +.CoreHorizontalStack > ::v-deep(*) { + /* override `width: 100%` of child elements to force horizontal stack */ + width: auto !important; +}