@@ -95,8 +95,7 @@ const styles = {
95
95
} ,
96
96
} ,
97
97
tinych : {
98
- backgroundColor : "rgba(129, 124, 155, 0.05)" ,
99
- // boxShadow: "0 1.5rem 2.5rem rgba(#6236FF 0.05)",
98
+ // backgroundColor: "rgba(129, 124, 155, 0.05)",
100
99
borderRadius : "2rem" ,
101
100
marginBottom : "2rem" ,
102
101
padding : "2rem" ,
@@ -256,7 +255,10 @@ class CovidApp extends Component {
256
255
< div className = { classes . chartArea } >
257
256
< div className = { classes . tinyChartArea } >
258
257
< div className = { classes . tinyChart } >
259
- < div className = { classes . tinych } >
258
+ < div
259
+ className = { classes . tinych }
260
+ style = { { background : "rgba(249, 52, 94,.1)" } }
261
+ >
260
262
< TinyCharts
261
263
data = { this . state . completeData }
262
264
isLoading = { this . state . isLoading }
@@ -267,7 +269,10 @@ class CovidApp extends Component {
267
269
< h3 style = { { color : colors . red } } > confirmed</ h3 >
268
270
</ div >
269
271
< div className = { classes . tinyChart } >
270
- < div className = { classes . tinych } >
272
+ < div
273
+ className = { classes . tinych }
274
+ style = { { background : "rgba(250, 100, 0,.1)" } }
275
+ >
271
276
< TinyCharts
272
277
data = { this . state . completeData }
273
278
isLoading = { this . state . isLoading }
@@ -278,7 +283,10 @@ class CovidApp extends Component {
278
283
< h3 style = { { color : colors . orange } } > active</ h3 >
279
284
</ div >
280
285
< div className = { classes . tinyChart } >
281
- < div className = { classes . tinych } >
286
+ < div
287
+ className = { classes . tinych }
288
+ style = { { background : "rgba(28, 177, 66,.1)" } }
289
+ >
282
290
< TinyCharts
283
291
data = { this . state . completeData }
284
292
isLoading = { this . state . isLoading }
@@ -289,7 +297,10 @@ class CovidApp extends Component {
289
297
< h3 style = { { color : colors . green } } > Recovered</ h3 >
290
298
</ div >
291
299
< div className = { classes . tinyChart } >
292
- < div className = { classes . tinych } >
300
+ < div
301
+ className = { classes . tinych }
302
+ style = { { background : "rgba(98, 54, 255,.1)" } }
303
+ >
293
304
< TinyCharts
294
305
data = { this . state . completeData }
295
306
isLoading = { this . state . isLoading }
0 commit comments