Skip to content
This repository has been archived by the owner on Nov 9, 2021. It is now read-only.

Commit

Permalink
Fix UTD Grades logo centering; fix graph y-axis
Browse files Browse the repository at this point in the history
  • Loading branch information
bharatari committed Apr 27, 2020
1 parent a736bc9 commit ff4d2d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions client/components/Header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const Back = styled(Button)`
outline: none;
border: none;
box-shadow: none;
visibility: ${props => props.dummy ? 'hidden' : 'visible'};
`;

const HeaderText = styled.a`
Expand Down Expand Up @@ -49,6 +50,7 @@ export default function Header() {
<Menu>
<Back onClick={goHome} type="ghost" icon={<HomeOutlined />} shape="circle" size="large" />
<HeaderText href="#" onClick={goHome}><h2><HeaderBold>UTD</HeaderBold> Grades</h2></HeaderText>
<Back dummy={true} onClick={goHome} type="ghost" icon={<HomeOutlined />} shape="circle" size="large" />
</Menu>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ export default function SectionContent({ relatedSections, section, handleRelated
scales: {
yAxes: [{
ticks: {
beginAtZero:true
beginAtZero: true,
precision: 0
},
}],
},
Expand Down

0 comments on commit ff4d2d4

Please sign in to comment.