Skip to content
This repository has been archived by the owner on Aug 5, 2019. It is now read-only.

Commit

Permalink
Fix scrollbar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sbardian committed Apr 22, 2018
1 parent 9627759 commit 49e0ab7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/client/containers/DashboardContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ const styles = theme => ({
tabs: {
color: '#666',
},
chart: {
background: '#fff',
},
});

class DashboardContainer extends Component {
Expand Down Expand Up @@ -403,7 +406,7 @@ class DashboardContainer extends Component {
</div>
)}
{tab === 1 && (
<div className="row">
<div className={classes.chart}>
<PieChart cards={creditCards} username={username} token={token} />
</div>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/client/styles/rain.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ body {
background: #000;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#81d4fa));
background: -moz-linear-gradient(top, rgba(#fff) 0%, #81d4fa 100%);
overflow: hidden;
overflow: auto;
}

.drop {
Expand Down

0 comments on commit 49e0ab7

Please sign in to comment.