From 49afc72f8392b91f3ac2520048bbba6c252143fa Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Wed, 29 Nov 2023 12:57:09 +0100 Subject: [PATCH] hacky padding fix --- .../components/collection-selection-actions.element.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/collection/components/collection-selection-actions.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/collection/components/collection-selection-actions.element.ts index 2b02c7eddf..8e080f7d01 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/collection/components/collection-selection-actions.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/collection/components/collection-selection-actions.element.ts @@ -96,6 +96,13 @@ export class UmbCollectionSelectionActionsElement extends UmbLitElement { static styles = [ UmbTextStyles, css` + :host { + width: 100%; + margin-right: calc( + -1 * var(--uui-size-space-6) + ); // compensate for the padding on the container. TODO: make a better solution + } + #container { display: flex; gap: var(--uui-size-3);