From 3abacbd70b403acce2a3aa92c3dcd4ee02c3f6f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Thu, 26 Oct 2023 14:05:44 +0200 Subject: [PATCH] out-commented container queries for now --- .../workspace-property-layout.element.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-property-layout/workspace-property-layout.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-property-layout/workspace-property-layout.element.ts index f19b8347e7..16277b0641 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-property-layout/workspace-property-layout.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-property-layout/workspace-property-layout.element.ts @@ -82,22 +82,22 @@ export class UmbWorkspacePropertyLayoutElement extends LitElement { :host > div { grid-column: span 2; } - @container (width > 600px) { + //@container (width > 600px) { :host(:not([orientation='vertical'])) > div { grid-column: span 1; } - } + //} #headerColumn { position: relative; height: min-content; } - @container (width > 600px) { + //@container (width > 600px) { #headerColumn { position: sticky; top: calc(var(--uui-size-space-2) * -1); } - } + //} #description { color: var(--uui-color-text-alt); @@ -106,11 +106,11 @@ export class UmbWorkspacePropertyLayoutElement extends LitElement { #editorColumn { margin-top: var(--uui-size-space-3); } - @container (width > 600px) { + //@container (width > 600px) { #editorColumn { margin-top: 0; } - } + //} `, ]; }