This commit is contained in:
mgabdev
2020-03-27 11:29:52 -04:00
parent 3d0a85cde4
commit 2bd344a594
46 changed files with 545 additions and 1448 deletions

View File

@@ -285,12 +285,18 @@ class StatusContent extends ImmutablePureComponent {
/>
{
this.state.collapsed &&
<button
className={[_s.default, _s.displayFlex, _s.cursorPointer, _s.py2, _s.text, _s.colorPrimary, _s.fontWeightBold, _s.fontSize15PX].join(' ')}
<Button
text
underlineOnHover
color='primary'
backgroundColor='none'
className={[_s.py2].join(' ')}
onClick={this.handleReadMore}
>
{intl.formatMessage(messages.readMore)}
</button>
<Text size='medium' color='inherit' weight='bold'>
{intl.formatMessage(messages.readMore)}
</Text>
</Button>
}
</div>
)