Skip to content

Commit

Permalink
resturcting the headers
Browse files Browse the repository at this point in the history
regarding the #78

Co-authored-by: Mani Anand <mani.anand@fau.de>
  • Loading branch information
IremToroslu and manifau committed Jun 6, 2021
1 parent cff6a8e commit ce617ab
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/details/PieChartComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const PieChartComponent = () => {
},
responsive: [
{
breakpoint: 2400,
breakpoint: 5000,
options: {
chart: {
height: '300px'
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/details/SelectVariableComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ class SelectVariableComponent extends Component {
*/

return (
<div className='w3-row w3-margin-top'>
<div className='w3-row'>
<div className='w3-col l6 m6 s3'>
<h4 className='TextContent'>Select your desire variable:</h4>
</div>
<div className='w3-col l6 m6 s8 w3-left'>
<div className='w3-dropdown-hover w3-margin-left w3-margin-right'>
<button className='w3-button w3-2018-sailor-blue'>
<div className='w3-dropdown-hover w3-margin-left w3-margin-right w3-margin-top w3-margin-bottom'>
<button className='w3-button' style={{backgroundColor:'#468c46'}}>
<div className='ButtonTitle'>{this.state.selectedVariable}</div>
</button>
<div className='w3-dropdown-content w3-bar-block w3-border'>
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 @@ -100,7 +100,7 @@ class TableComponent extends Component {
<thead>
<tr
key={'FirstRow'}
style={{ backgroundColor:'#6aa66a'}}
style={{ backgroundColor:'#88b598'}}
>
{this.state.headers.map((item) => (
<th key={idKey + 'thead' + item.key}>{item.value}</th>
Expand Down
8 changes: 3 additions & 5 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ body {
min-width: 360;
max-width: 450;
min-height: 400px;
margin-top:10px;

}

Expand All @@ -289,12 +290,12 @@ body {
cursor: 'pointer';
min-width: 300;
max-width: 360;
margin-top:10px;

}
.TableContainer{

background-color: #FFFFFF;
/* border:0.5px solid #00b300; */
border-color: #00b300;
border-radius: 4px;
cursor: 'pointer';
/* min-width: 500px;
Expand All @@ -313,9 +314,6 @@ body {
background-color: #FFFFFF;

}



.Separator {
border-left: '1px';
/* margin-left: 40;
Expand Down

0 comments on commit ce617ab

Please sign in to comment.