From d1ec23169bf4ae63f55715136627fa113ffc411a Mon Sep 17 00:00:00 2001 From: markuczy <129275100+markuczy@users.noreply.github.com> Date: Tue, 29 Oct 2024 08:44:15 +0100 Subject: [PATCH] feat: new menu-inline-border-color variable (#567) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Henry Täschner <129834483+HenryT-CG@users.noreply.github.com> --- .../portal-layout-styles/src/styles/shell/menu/_menu_theme.scss | 2 +- libs/portal-layout-styles/src/styles/shell/shell.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/portal-layout-styles/src/styles/shell/menu/_menu_theme.scss b/libs/portal-layout-styles/src/styles/shell/menu/_menu_theme.scss index 29bad27f..78a6c732 100644 --- a/libs/portal-layout-styles/src/styles/shell/menu/_menu_theme.scss +++ b/libs/portal-layout-styles/src/styles/shell/menu/_menu_theme.scss @@ -56,7 +56,7 @@ } .layout-inline-menu { - border-color: var(--inline-menu-border-color); + border-color: var(--menu-inline-border-color); a { color: var(--menu-item-text-color); diff --git a/libs/portal-layout-styles/src/styles/shell/shell.scss b/libs/portal-layout-styles/src/styles/shell/shell.scss index 2134cdef..21d53e03 100644 --- a/libs/portal-layout-styles/src/styles/shell/shell.scss +++ b/libs/portal-layout-styles/src/styles/shell/shell.scss @@ -45,6 +45,7 @@ --menu-active-item-text-color: var(--menu-item-text-color); --menu-active-item-bg-color: var(--menu-item-hover-bg-color); --inline-menu-border-color: var(--divider-color); + --menu-inline-border-color: var(--divider-color); --mobile-break-point: #{$mobileBreakpoint}; --submenu-shadow: #{$submenuShadow}; --menu-shadow: #{$menuShadow};