Browse Source

Remove background mask from avatars

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
98de6927f3
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/assets/javascripts/components/components/avatar.jsx
  2. +1
    -1
      app/assets/javascripts/components/features/account/components/header.jsx

+ 1
- 1
app/assets/javascripts/components/components/avatar.jsx 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>
);

+ 1
- 1
app/assets/javascripts/components/features/account/components/header.jsx View File

@ -18,7 +18,7 @@ const Header = React.createClass({
return (
<div style={{ flex: '0 0 auto', background: '#2f3441', textAlign: 'center', backgroundImage: `url(${account.get('header')})`, backgroundSize: 'cover' }}>
<div style={{ background: 'rgba(47, 52, 65, 0.8)', padding: '30px 10px' }}>
<div style={{ width: '90px', margin: '0 auto', marginBottom: '15px', borderRadius: '90px', overflow: 'hidden' }} className='transparent-background'>
<div style={{ width: '90px', margin: '0 auto', marginBottom: '15px' }}>
<img src={account.get('avatar')} alt='' style={{ display: 'block', width: '90px', height: '90px', borderRadius: '90px' }} />
</div>

Loading…
Cancel
Save