Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
manifau committed Jun 11, 2021
2 parents c7d3b88 + 27714d5 commit bba51e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/details/PieChartComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ const PieChartComponent = () => {
labels: labels,
// TODO: do the materials stay the same? otherwise doesn't make sense to use fixed color / hardcode them
colors: [
'#e2d000',
'#F6E600',
theme.color.Steel,
theme.color.Pressboard,
theme.color.StainlessSteel,
theme.color.Alminium,
'#0084E1',
theme.color.Copper
'#f28e30'
],
responsive: [
{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/details/TableComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class TableComponent extends Component {

<table className='w3-table-all w3-card-4 w3-small w3-center'>
<thead>
<tr key={'FirstRow'} style={{ backgroundColor: '#11c26b' }}>
<tr key={'FirstRow'} style={{ backgroundColor: '#009B55' }}>
{this.state.headers.map((item) => (
<th key={idKey + 'thead' + item.key}>{item.value}</th>
))}
Expand Down

0 comments on commit bba51e1

Please sign in to comment.