From ab9af756a4087617692c5af28881667de150b59c Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Mon, 6 Feb 2017 23:38:54 -0700 Subject: [PATCH] Adjust background color of menu and chart table header --- src/components/chart.js | 3 +-- src/components/menu.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/chart.js b/src/components/chart.js index 725a245..c13b683 100644 --- a/src/components/chart.js +++ b/src/components/chart.js @@ -6,7 +6,7 @@ import Section from './section.js'; const rowData = [ { - bgColor: 'white', + bgColor: 'transparent', textColor: 'black', cells: ['Color', '1st', '2nd', 'Multiplier', 'Tolerance'], }, @@ -72,7 +72,6 @@ const rowData = [ }, ]; - export default class Chart extends Component { constructor(props) { super(props); diff --git a/src/components/menu.js b/src/components/menu.js index 5f6e0b9..b0e22e6 100644 --- a/src/components/menu.js +++ b/src/components/menu.js @@ -5,7 +5,7 @@ import MyText from './mytext.js'; const styles = { main: { - backgroundColor: '#ffffff', + backgroundColor: '#fafafa', flex: 1, }, menutable: {