Skip to content

Commit

Permalink
Merge branch 'development' into 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Jun 15, 2018
2 parents 2c679a1 + 0dbc73f commit 10a5954
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions src/components/dashboard/currencyGraph.css
@@ -1,7 +1,7 @@
@import '../app/variables';

:root {
--stepSwitch-font-size: 15px;
--stepSwitch-font-size: 16px;
}

.wrapper {
Expand All @@ -11,7 +11,7 @@
}

.chartWrapper {
height: calc(100% - 70px);
height: 100%;
min-height: 130px;
width: calc(100% + 50px);
margin: 0 -25px;
Expand All @@ -38,20 +38,20 @@
.stepSwitchWrapper {
float: right;
margin: 50px;
z-index: 10;
position: relative;
}

.stepSwitch {
padding: 10px 16px;
padding: 10px 14px;
cursor: pointer;
font-size: var(--stepSwitch-font-size);
font-weight: 500;
color: var(--color-grayscale-medium);
font-weight: 600;
font-family: var(--heading-font);
color: var(--color-grayscale-light);

&.active {
color: var(--color-white);
background: var(--gradient-tertiary);
border-radius: var(--border-radius-normal);
font-weight: 300;
color: var(--color-grayscale-dark);
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/components/dashboard/currencyGraph.js
Expand Up @@ -44,7 +44,7 @@ const chartOptions = step => ({
padding: {
left: 0,
right: 0,
top: 0,
top: 80,
bottom: bottomPadding,
},
},
Expand Down Expand Up @@ -174,7 +174,7 @@ class CurrencyGraph extends React.Component {
afterDraw(chartInstance) {
drawGradientRectangle(chartInstance, {
bottomPosition: bottomPadding + 32,
height: 5,
height: 10,
});
},
});
Expand Down

0 comments on commit 10a5954

Please sign in to comment.