Skip to content

Commit

Permalink
Merge pull request #600 from madeindjs/WF-58
Browse files Browse the repository at this point in the history
fix(ui): force auto with inside `CoreHorizontalStack` - WF-58
  • Loading branch information
ramedina86 authored Oct 21, 2024
2 parents d82f245 + 8bbe5ba commit 0aa2c42
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ui/src/components/core/layout/CoreHorizontalStack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
</style>

0 comments on commit 0aa2c42

Please sign in to comment.