diff --git a/app/assets/javascripts/components/components/icon_button.jsx b/app/assets/javascripts/components/components/icon_button.jsx index 085c18541..663728f34 100644 --- a/app/assets/javascripts/components/components/icon_button.jsx +++ b/app/assets/javascripts/components/components/icon_button.jsx @@ -28,15 +28,19 @@ const IconButton = React.createClass({ render () { const style = { display: 'inline-block', + border: 'none', + padding: '0', + background: 'transparent', fontSize: `${this.props.size}px`, - width: `${this.props.size}px`, + width: `${this.props.size * 1.28571429}px`, height: `${this.props.size}px`, - lineHeight: `${this.props.size}px` + lineHeight: `${this.props.size}px`, + cursor: 'pointer' }; return (