Merge branch 'remove-unnecessary-div-account-section-headline' into 'develop'
Remove unnecessary div in account section headline See merge request soapbox-pub/soapbox-fe!384
This commit is contained in:
commit
4b1302d142
2 changed files with 11 additions and 11 deletions
|
@ -148,7 +148,6 @@ class AccountTimeline extends ImmutablePureComponent {
|
||||||
return (
|
return (
|
||||||
<Column>
|
<Column>
|
||||||
<div className='account__section-headline'>
|
<div className='account__section-headline'>
|
||||||
<div style={{ width: '100%', display: 'flex' }}>
|
|
||||||
<NavLink exact to={`/@${accountUsername}`}>
|
<NavLink exact to={`/@${accountUsername}`}>
|
||||||
<FormattedMessage id='account.posts' defaultMessage='Posts' />
|
<FormattedMessage id='account.posts' defaultMessage='Posts' />
|
||||||
</NavLink>
|
</NavLink>
|
||||||
|
@ -159,7 +158,6 @@ class AccountTimeline extends ImmutablePureComponent {
|
||||||
<FormattedMessage id='account.media' defaultMessage='Media' />
|
<FormattedMessage id='account.media' defaultMessage='Media' />
|
||||||
</NavLink>
|
</NavLink>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<StatusList
|
<StatusList
|
||||||
scrollKey='account_timeline'
|
scrollKey='account_timeline'
|
||||||
statusIds={statusIds}
|
statusIds={statusIds}
|
||||||
|
|
|
@ -467,6 +467,8 @@ a .account__avatar {
|
||||||
|
|
||||||
.account__section-headline {
|
.account__section-headline {
|
||||||
background: var(--foreground-color);
|
background: var(--foreground-color);
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
button,
|
button,
|
||||||
a {
|
a {
|
||||||
|
|
Loading…
Reference in a new issue