Using react-interactive we now have hover animations for our buttons.

This commit is contained in:
2017-11-28 21:02:25 +01:00
parent 362e5f54d1
commit 62b6f5c8ca
2 changed files with 50 additions and 7 deletions

View File

@@ -62,8 +62,9 @@ export default {
requestButton: {
color: '#e9a131',
marginRight: '10px',
background: 'white',
backgroundColor: 'white',
border: '#e9a131 2px solid',
borderColor: '#e9a131',
borderRadius: '4px',
textAlign: 'center',
padding: '10px',
@@ -74,10 +75,15 @@ export default {
cursor: 'pointer'
},
requestButton_hover: {
backgroundColor: '#e9a131',
color: 'white',
},
tmdbButton: {
color: '#00d17c',
marginRight: '10px',
background: 'white',
backgroundColor: 'white',
border: '#00d17c 2px solid',
borderRadius: '4px',
textAlign: 'center',
@@ -89,6 +95,11 @@ export default {
cursor: 'pointer'
},
tmdbButton_hover: {
backgroundColor: '#00d17c',
color: 'white',
},
row: {
width: '100%'
},