1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-24 07:41:30 +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-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');
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
</Nav.item>
};