From c843c42d2fea31e839717cc3e4ddc2a548fc1b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Wed, 24 Jan 2024 20:34:11 +0100 Subject: [PATCH] remove unused styles --- .../property-editor-ui-markdown-editor.element.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/markdown-editor/property-editor-ui-markdown-editor.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/markdown-editor/property-editor-ui-markdown-editor.element.ts index 53b3bf61d6..eb1c2b39a3 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/markdown-editor/property-editor-ui-markdown-editor.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/markdown-editor/property-editor-ui-markdown-editor.element.ts @@ -1,7 +1,6 @@ import type { UmbInputMarkdownElement } from '../../../components/input-markdown-editor/index.js'; import '../../../components/input-markdown-editor/index.js'; import { html, customElement, property, state } from '@umbraco-cms/backoffice/external/lit'; -import { UmbTextStyles } from '@umbraco-cms/backoffice/style'; import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/extension-registry'; import { UmbLitElement } from '@umbraco-cms/internal/lit-element'; import type { UmbPropertyEditorConfigCollection } from '@umbraco-cms/backoffice/property-editor'; @@ -39,8 +38,6 @@ export class UmbPropertyEditorUIMarkdownEditorElement extends UmbLitElement impl @change=${this.#onChange} .value=${this.value}>`; } - - static styles = [UmbTextStyles]; } export default UmbPropertyEditorUIMarkdownEditorElement;