Skip to content

Commit

Permalink
Add Cursor Pointer on Clickables
Browse files Browse the repository at this point in the history
  • Loading branch information
austinkettner committed May 28, 2018
1 parent e77c949 commit 57133d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/public/nav/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import LogoType from './ic_logotype.svg';
import MenuIcon from './ic_menu.svg';

class Nav extends React.Component {
constructor(props){
constructor(props) {
super(props);

this.state = {
Expand Down Expand Up @@ -38,7 +38,7 @@ class Nav extends React.Component {
aria-expanded={this.state.active}
title="Toggle menu"
aria-controls="menu">
<MenuIcon/>
<MenuIcon />
</button>
<Menu active={this.state.active} toggle={this.toggleActive} />
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/public/nav/nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
&:hover, &:active, &:focus {
outline: none;
color: $primary;
cursor: pointer;
}

svg, rect {
Expand Down
3 changes: 3 additions & 0 deletions src/pages/public/home/intro.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@
margin-left: -3.438em;
bottom: 10%;
z-index: 1;
&:hover {
cursor: pointer;
}
}

.madeInAmerica {
Expand Down

0 comments on commit 57133d6

Please sign in to comment.