From b67d0a7886030806febda499493a885075485a2d Mon Sep 17 00:00:00 2001 From: Alex Molodyh <140214274+amolodyh-hyland@users.noreply.github.com> Date: Thu, 31 Jul 2025 09:34:41 -0700 Subject: [PATCH] [AAE-36538] Removed flex-direction:column for form section column large screens (#11090) --- .../form/components/form-section/form-section.component.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/core/src/lib/form/components/form-section/form-section.component.scss b/lib/core/src/lib/form/components/form-section/form-section.component.scss index 3e33ec89ae..c15228339b 100644 --- a/lib/core/src/lib/form/components/form-section/form-section.component.scss +++ b/lib/core/src/lib/form/components/form-section/form-section.component.scss @@ -6,26 +6,27 @@ display: flex; flex-wrap: inherit; align-items: baseline; - flex-direction: column; gap: 1%; @include flex.layout-bp(lt-md) { + /* stylelint-disable-next-line declaration-no-important */ flex: 1 1 100% !important; flex-direction: column; } .adf-section-widget { @include flex.layout-bp(lt-md) { + /* stylelint-disable-next-line declaration-no-important */ width: 100% !important; } } > div { @include flex.layout-bp(lt-md) { + /* stylelint-disable-next-line declaration-no-important */ width: 100% !important; } } - } &-column-view-item {