made narrative buttons in toolbar yellow on hover

This commit is contained in:
Sam Ludford
2019-05-17 15:58:33 +01:00
committed by Lachlan Kermode
parent 9f1f6683d1
commit 927593d360
2 changed files with 8 additions and 1 deletions

View File

@@ -61,7 +61,7 @@ class Toolbar extends React.Component {
{this.props.narratives.map((narr) => {
return (
<div className='panel-action action'>
<button style={{ backgroundColor: '#000' }} onClick={() => { this.goToNarrative(narr) }}>
<button onClick={() => { this.goToNarrative(narr) }}>
<p>{narr.label}</p>
<p><small>{trimAndEllipse(narr.description, 120)}</small></p>
</button>