0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-04 21:12:41 +00:00

Chagne the help out icon to a heart that glows red

This commit is contained in:
Scott Tolksdorf
2016-05-16 21:17:02 -04:00
parent 23cd7e7516
commit 0612fc63e6
2 changed files with 15 additions and 1 deletions

View File

@@ -46,4 +46,13 @@
text-align : center; text-align : center;
text-transform: initial; text-transform: initial;
} }
.patreon.navItem{
i{
.animate(color);
&:hover{
color : @red;
}
}
}
} }

View File

@@ -2,7 +2,12 @@ var React = require('react');
var Nav = require('naturalcrit/nav/nav.jsx'); var Nav = require('naturalcrit/nav/nav.jsx');
module.exports = function(props){ module.exports = function(props){
return <Nav.item newTab={true} href='https://www.patreon.com/stolksdorf' color='green' icon='fa-gift'> return <Nav.item
className='patreon'
newTab={true}
href='https://www.patreon.com/stolksdorf'
color='green'
icon='fa-heart'>
help out help out
</Nav.item> </Nav.item>
}; };