From cd5590a21b6c3618f59fa83644787de6dc2594f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20=C3=85lund?= Date: Sun, 7 Jun 2020 20:30:50 +0200 Subject: [PATCH] Add background color for tabs (#1170) * Add background color for tabs * Use BackstageTheme * Use paper instead * Use standard theme --- packages/core/src/layout/HeaderTabs/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/layout/HeaderTabs/index.tsx b/packages/core/src/layout/HeaderTabs/index.tsx index c43838ef70..158cd76913 100644 --- a/packages/core/src/layout/HeaderTabs/index.tsx +++ b/packages/core/src/layout/HeaderTabs/index.tsx @@ -18,12 +18,12 @@ // This is just a temporary solution to implementing tabs for now import React from 'react'; - import { makeStyles, Tabs, Tab } from '@material-ui/core'; const useStyles = makeStyles(theme => ({ tabsWrapper: { gridArea: 'pageSubheader', + backgroundColor: theme.palette.background.paper, }, defaultTab: { padding: theme.spacing(3, 3),