We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 199a577 commit a0bb151Copy full SHA for a0bb151
src/client/components/PageTitle/index.jsx
@@ -30,9 +30,10 @@ class PageTitle extends React.Component {
30
hideBorderBottom ? 'nbb' : 'dt-borderBottom',
31
!shadow && 'noshadow'
32
)}
33
+ style={{ display: 'flex', justifyContent: 'space-between' }}
34
>
- <p className={'uk-float-left'}>{title}</p>
35
- <div className={'uk-float-right uk-clearfix uk-width-1-2'}>{rightComponent}</div>
+ <p style={{ flexGrow: 1 }}>{title}</p>
36
+ <div>{rightComponent}</div>
37
</div>
38
39
)
0 commit comments