diff --git a/src/web/components/chart/axis.js b/src/web/components/chart/axis.js index 5362e8da86..929442104a 100644 --- a/src/web/components/chart/axis.js +++ b/src/web/components/chart/axis.js @@ -17,8 +17,6 @@ */ import React from 'react'; -import {css} from 'glamor'; - import {Axis as VxAxis} from '@vx/axis'; import PropTypes from 'web/utils/proptypes'; @@ -28,24 +26,6 @@ const FONT_SIZE = 10; const DEFAULT_TICK_LENGTH = 8; -const labelCss = css({ - fill: Theme.darkGray, -}); - -const lineCss = css({ - shapeRendering: 'crispEdges', - stroke: Theme.mediumGray, - strokeWidth: 0.99, -}); - -const tickCss = css({ - '& line': { - stroke: Theme.mediumGray, - shapeRendering: 'crispEdges', - strokeWidth: 0.99, - }, -}); - const DEFAULT_TICK_PROPS = { fill: Theme.mediumGray, fontFamily: Theme.Font.default, @@ -98,10 +78,10 @@ const Axis = ({ }) => (