Skip to content

Commit

Permalink
fix(messages): react ui fix
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Aug 20, 2022
1 parent 199a577 commit a0bb151
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/client/components/PageTitle/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ class PageTitle extends React.Component {
hideBorderBottom ? 'nbb' : 'dt-borderBottom',
!shadow && 'noshadow'
)}
style={{ display: 'flex', justifyContent: 'space-between' }}
>
<p className={'uk-float-left'}>{title}</p>
<div className={'uk-float-right uk-clearfix uk-width-1-2'}>{rightComponent}</div>
<p style={{ flexGrow: 1 }}>{title}</p>
<div>{rightComponent}</div>
</div>
</div>
)
Expand Down

0 comments on commit a0bb151

Please sign in to comment.