diff --git a/client/web/admin/src/components/Settings/UI/CUIBrandingEditor.vue b/client/web/admin/src/components/Settings/UI/CUIBrandingEditor.vue
index ecc54aa13..5016b6b0a 100644
--- a/client/web/admin/src/components/Settings/UI/CUIBrandingEditor.vue
+++ b/client/web/admin/src/components/Settings/UI/CUIBrandingEditor.vue
@@ -173,6 +173,8 @@ export default {
'light',
'extra-light',
'body-bg',
+ 'sidebar-bg',
+ 'topbar-bg',
],
lightModeVariables: {
'black': '#162425',
diff --git a/client/web/compose/src/components/Namespaces/NamespaceSidebar.vue b/client/web/compose/src/components/Namespaces/NamespaceSidebar.vue
index c6181d9d9..23b8ae52e 100644
--- a/client/web/compose/src/components/Namespaces/NamespaceSidebar.vue
+++ b/client/web/compose/src/components/Namespaces/NamespaceSidebar.vue
@@ -55,7 +55,7 @@
v-if="namespace"
class="d-flex flex-column flex-grow-1"
>
-
+
diff --git a/lib/vue/src/components/navigation/CSidebar.vue b/lib/vue/src/components/navigation/CSidebar.vue
index 5e767c118..68df1c41c 100644
--- a/lib/vue/src/components/navigation/CSidebar.vue
+++ b/lib/vue/src/components/navigation/CSidebar.vue
@@ -7,9 +7,9 @@
v-model="isExpanded"
data-test-id="sidebar"
:sidebar-class="`sidebar ${isExpanded ? 'expanded' : ''}`"
- :header-class="`bg-white d-block sidebar-header ${isExpanded ? 'expanded border-bottom p-2' : ''}`"
- :body-class="`bg-white ${isExpanded ? 'px-3' : ''}`"
- :footer-class="`bg-white rounded-right ${isExpanded ? 'px-2' : ''}`"
+ :header-class="`d-block sidebar-header ${isExpanded ? 'expanded border-bottom p-2' : ''}`"
+ :body-class="`${isExpanded ? 'px-3' : ''}`"
+ :footer-class="`rounded-right ${isExpanded ? 'px-2' : ''}`"
:no-header="!isExpanded"
:backdrop="isMobile"
:shadow="isExpanded && 'sm'"
@@ -337,6 +337,10 @@ $header-height: 64px;