From 542394df8395893fd6bb51c9d4aa24f582a278f3 Mon Sep 17 00:00:00 2001
From: Julia Friesel <julia.friesel@gmail.com>
Date: Sat, 11 Aug 2018 15:55:33 +0200
Subject: [PATCH] Adapt style to CSS foramt

---
 components/chart/styles.js | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/components/chart/styles.js b/components/chart/styles.js
index d503f5cd..c7be9805 100644
--- a/components/chart/styles.js
+++ b/components/chart/styles.js
@@ -2,8 +2,9 @@ import config from './config'
 
 const styles = {
   curve: {
-    stroke: '#ffc425',
-    strokeWidth: 2
+    borderStyle: 'solid',
+    borderColor: '#ffc425',
+    borderWidth: 2,
   },
   curveExcluded: {
     stroke: 'lightgrey',
@@ -12,13 +13,15 @@ const styles = {
   },
   curveDots: {
     backgroundColor: '#00aedb',
-    width: 15,
-    height: 15,
+    width: 12,
+    height: 12,
     borderRadius: 50
   },
   curveDotsExcluded: {
-    fill: 'lightgrey',
-    r: 6
+    backgroundColor: 'lightgrey',
+    width: 12,
+    height: 12,
+    borderRadius: 50
   },
   column: {
     label: {
-- 
GitLab