ComposeForm: make all buttons acessible on mobile (hotfix)
This commit is contained in:
parent
883ffb0a74
commit
eaf42370b9
1 changed files with 2 additions and 2 deletions
|
@ -364,7 +364,7 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
<QuotedStatusContainer />
|
||||
|
||||
<div
|
||||
className={classNames('flex items-center justify-between', {
|
||||
className={classNames('flex flex-wrap items-center justify-between', {
|
||||
'hidden': condensed,
|
||||
})}
|
||||
>
|
||||
|
@ -378,7 +378,7 @@ class ComposeForm extends ImmutablePureComponent {
|
|||
<EmojiPickerDropdown onPickEmoji={this.handleEmojiPick} />
|
||||
</div>
|
||||
|
||||
<div className='flex items-center space-x-4 ml-4'>
|
||||
<div className='flex items-center space-x-4 ml-auto'>
|
||||
{maxTootChars && (
|
||||
<div className='flex items-center space-x-1'>
|
||||
<TextCharacterCounter max={maxTootChars} text={text} />
|
||||
|
|
Loading…
Reference in a new issue