diff --git a/src/src/App.js b/src/src/App.js index cf742db..726d2ee 100644 --- a/src/src/App.js +++ b/src/src/App.js @@ -31,7 +31,13 @@ const styles = theme => ({ tab: { width: '100%', minHeight: '100%' - } + }, + selected: { + color: theme.palette.mode === 'dark' ? undefined : '#FFF !important', + }, + indicator: { + backgroundColor: theme.palette.mode === 'dark' ? theme.palette.secondary.main : '#FFF', + }, }); const tabs = [ @@ -121,9 +127,12 @@ class App extends GenericApp { this.selectTab(tabs[index].name, index)} - variant="scrollable" scrollButtons="auto" + variant="scrollable" + scrollButtons="auto" + classes={{ indicator: this.props.classes.indicator }} > {tabs.map(tab => {tab.icon}{I18n.t(tab.title)} : I18n.t(tab.title)} data-name={tab.name} key={tab.name}