From cc476d1c9f5cf51e55530a4db9f6d3edb2a22f01 Mon Sep 17 00:00:00 2001 From: Michael Arestad Date: Thu, 25 Aug 2022 10:22:35 -0600 Subject: [PATCH] Updated A11y tab bar background color --- code/addons/a11y/src/components/Tabs.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/addons/a11y/src/components/Tabs.tsx b/code/addons/a11y/src/components/Tabs.tsx index 800c4e26396..1dbbbec91c1 100644 --- a/code/addons/a11y/src/components/Tabs.tsx +++ b/code/addons/a11y/src/components/Tabs.tsx @@ -78,7 +78,7 @@ const TabsWrapper = styled.div({}); const List = styled.div(({ theme }) => ({ boxShadow: `${theme.appBorderColor} 0 -1px 0 0 inset`, - background: 'rgba(0, 0, 0, .05)', + background: theme.background.app, display: 'flex', justifyContent: 'space-between', whiteSpace: 'nowrap',