Remove background mask from avatars

This commit is contained in:
Eugen Rochko
2016-09-19 23:28:22 +02:00
parent 337462aa5e
commit 98de6927f3
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ const Avatar = React.createClass({
render () {
return (
<div style={{ width: `${this.props.size}px`, height: `${this.props.size}px`, borderRadius: '4px', overflow: 'hidden' }} className='transparent-background'>
<div style={{ width: `${this.props.size}px`, height: `${this.props.size}px` }}>
<img src={this.props.src} width={this.props.size} height={this.props.size} alt='' style={{ display: 'block', borderRadius: '4px' }} />
</div>
);