From fc5511ae31a47cfb65ccef6bda4e4b6b82285f0a Mon Sep 17 00:00:00 2001 From: Rajeev529 Date: Fri, 30 Jan 2026 23:24:24 +0530 Subject: [PATCH] hardcoded colors removed --- .../frontend/shared/views/BottomBar.vue | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/contentcuration/contentcuration/frontend/shared/views/BottomBar.vue b/contentcuration/contentcuration/frontend/shared/views/BottomBar.vue index 6cceeb228d..d0b6c51aa0 100644 --- a/contentcuration/contentcuration/frontend/shared/views/BottomBar.vue +++ b/contentcuration/contentcuration/frontend/shared/views/BottomBar.vue @@ -2,7 +2,7 @@
@@ -17,7 +17,16 @@ props: { appearanceOverrides: { type: Object, - default: () => {}, + default: () => ({}), + }, + }, + computed: { + bottomBarStyles() { + return { + backgroundColor: this.$themeTokens.surface, + borderTop: `1px solid ${this.$themeTokens.fineLine}`, + ...this.appearanceOverrides, + }; }, }, }; @@ -36,8 +45,6 @@ align-items: center; width: 100%; height: 64px; - background-color: #ffffff; - border-top: 1px solid #dddddd; }