Skip to content

Commit a0bb151

Browse files
committed
fix(messages): react ui fix
1 parent 199a577 commit a0bb151

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/client/components/PageTitle/index.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ class PageTitle extends React.Component {
3030
hideBorderBottom ? 'nbb' : 'dt-borderBottom',
3131
!shadow && 'noshadow'
3232
)}
33+
style={{ display: 'flex', justifyContent: 'space-between' }}
3334
>
34-
<p className={'uk-float-left'}>{title}</p>
35-
<div className={'uk-float-right uk-clearfix uk-width-1-2'}>{rightComponent}</div>
35+
<p style={{ flexGrow: 1 }}>{title}</p>
36+
<div>{rightComponent}</div>
3637
</div>
3738
</div>
3839
)

0 commit comments

Comments
 (0)