Skip to content

Commit f44452f

Browse files
authored
Merge pull request #10 from alon25/staging
Style
2 parents 03d9e60 + 066669b commit f44452f

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

app/charts/latency-chart.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const LatencyChart = (props) => {
3333
}]}
3434
layout = {{
3535
height: 400,
36-
width: 650,
36+
width: 400,
3737
font: {
3838
color: 'black',
3939
size: 15

app/charts/processes-chart.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const ProcessesChart = (props) => {
7272
]}
7373
layout = {{
7474
height: 400,
75-
width: 650,
75+
width: 400,
7676
font: {
7777
color: 'black',
7878
size: 15

app/charts/speed-chart.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ const SpeedChart = (props) => {
5050
},
5151
}]}
5252
layout = {{
53-
height: 250,
54-
width: 250,
53+
height: 400,
54+
width: 400,
5555
font: {
5656
color: 'black',
5757
size: 15
@@ -67,7 +67,7 @@ const SpeedChart = (props) => {
6767
)
6868
};
6969

70-
return <div className="speedChart">{createChart()}</div>;
70+
return <div>{createChart()}</div>;
7171
};
7272

7373
export default SpeedChart;

app/charts/temperature-chart.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const TemperatureChart = (props) => {
5959
)
6060
};
6161

62-
return <div className="temperatureChart">{createChart()}</div>;
62+
return <div>{createChart()}</div>;
6363
};
6464

6565
export default TemperatureChart;

app/stylesheets/overviewSubmit.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
background-color: #24262F;
44
margin: 8% auto 0 auto;
55
height: 40px;
6+
width: 150px;
67
border: none;
78
font-size: 1.50vh;
89
color: whitesmoke;

0 commit comments

Comments
 (0)