Extension Insights: Fixes CSS alignment (fixes #20170) (#20174)

Extension Insights: Fixes CSS alignment

Fixes #20170.
This commit is contained in:
Lee Kelleher
2025-09-18 07:51:09 +01:00
committed by GitHub
parent e415ad22e9
commit 061be01e89
2 changed files with 10 additions and 7 deletions

View File

@@ -33,6 +33,10 @@ export class UmbCollectionFilterFieldElement extends UmbLitElement {
static override readonly styles = [
css`
:host {
display: flex;
}
uui-input {
width: 100%;
}

View File

@@ -49,19 +49,18 @@ export class UmbExtensionCollectionElement extends UmbCollectionDefaultElement {
static override styles = [
css`
#toolbar {
flex: 1;
display: flex;
gap: var(--uui-size-space-5);
justify-content: space-between;
align-items: center;
}
umb-collection-filter-field {
width: 100%;
}
umb-collection-filter-field {
flex: 1;
}
uui-select {
width: 100%;
uui-select {
flex: 1;
}
}
`,
];