diff --git a/src/Umbraco.Web.UI.Client/src/packages/translation/dashboards/dictionary/dashboard-translation-dictionary.element.ts b/src/Umbraco.Web.UI.Client/src/packages/translation/dashboards/dictionary/dashboard-translation-dictionary.element.ts index e044194b5b..0da96591f0 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/translation/dashboards/dictionary/dashboard-translation-dictionary.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/translation/dashboards/dictionary/dashboard-translation-dictionary.element.ts @@ -146,42 +146,41 @@ export class UmbDashboardTranslationDictionaryElement extends UmbLitElement { } render() { - return html`
- Create dictionary item - -
- -
-
-
- ${when( - this._tableItemsFiltered.length, - () => html` `, - () => html`There were no dictionary items found.` - )}`; + return html` + + + ${when( + this._tableItemsFiltered.length, + () => html` `, + () => html`There were no dictionary items found.` + )} + + `; } static styles = [ UUITextStyles, css` - :host { - display: block; - padding: var(--uui-size-layout-1); - } - - #dictionary-top-bar { - margin-bottom: var(--uui-size-space-5); + #header { display: flex; justify-content: space-between; + width: 100%; } umb-table {