From 8594ce3c9903dcf554e097ded4325dcfe0cd795e Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Mon, 8 Dec 2025 15:51:37 +0100 Subject: [PATCH] [PM-29128] Fix desktop layout (#17789) * Temporary styling that handles app-header * Update with layouti mprovements --- .../src/app/layout/desktop-layout.component.html | 2 +- apps/desktop/src/scss/migration.scss | 15 +++++++++++++++ apps/desktop/src/scss/styles.scss | 1 + 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 apps/desktop/src/scss/migration.scss diff --git a/apps/desktop/src/app/layout/desktop-layout.component.html b/apps/desktop/src/app/layout/desktop-layout.component.html index 94b9201ae21..7f8bd265102 100644 --- a/apps/desktop/src/app/layout/desktop-layout.component.html +++ b/apps/desktop/src/app/layout/desktop-layout.component.html @@ -1,4 +1,4 @@ - + diff --git a/apps/desktop/src/scss/migration.scss b/apps/desktop/src/scss/migration.scss new file mode 100644 index 00000000000..e3078158283 --- /dev/null +++ b/apps/desktop/src/scss/migration.scss @@ -0,0 +1,15 @@ +/** + * Desktop UI Migration + * + * These are temporary styles during the desktop ui migration. + **/ + +/** + * This removes any padding applied by the bit-layout to content. + * This should be revisited once the table is migrated, and again once drawers are migrated. + **/ +bit-layout { + #main-content { + padding: 0 0 0 0; + } +} diff --git a/apps/desktop/src/scss/styles.scss b/apps/desktop/src/scss/styles.scss index c579e6acdc0..b4082afd38c 100644 --- a/apps/desktop/src/scss/styles.scss +++ b/apps/desktop/src/scss/styles.scss @@ -15,5 +15,6 @@ @import "left-nav.scss"; @import "loading.scss"; @import "plugins.scss"; +@import "migration.scss"; @import "../../../../libs/angular/src/scss/icons.scss"; @import "../../../../libs/components/src/multi-select/scss/bw.theme";