This commit is contained in:
Lone Iversen
2024-01-04 16:34:00 +01:00
parent 450f5c1948
commit 37243b390f
3 changed files with 6 additions and 21 deletions

View File

@@ -50,17 +50,12 @@ export class UmbBlockTypeGridWorkspaceViewAdvancedElement extends UmbLitElement
UmbTextStyles,
css`
:host {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
gap: var(--uui-size-layout-1);
margin: var(--uui-size-layout-1);
padding-bottom: var(--uui-size-layout-1); // To enforce some distance to the bottom of the scroll-container.
}
uui-box {
flex: 1;
min-width: 600px;
}
`,
];
}

View File

@@ -24,17 +24,12 @@ export class UmbBlockTypeGridWorkspaceViewAreasElement extends UmbLitElement imp
UmbTextStyles,
css`
:host {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
gap: var(--uui-size-layout-1);
margin: var(--uui-size-layout-1);
padding-bottom: var(--uui-size-layout-1); // To enforce some distance to the bottom of the scroll-container.
}
uui-box {
flex: 1;
min-width: 600px;
}
`,
];
}

View File

@@ -125,17 +125,12 @@ export class UmbBlockTypeGridWorkspaceViewSettingsElement extends UmbLitElement
UmbTextStyles,
css`
:host {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
gap: var(--uui-size-layout-1);
margin: var(--uui-size-layout-1);
padding-bottom: var(--uui-size-layout-1); // To enforce some distance to the bottom of the scroll-container.
}
uui-box {
flex: 1;
min-width: 600px;
}
#showOptions {
display: flex;