1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

Fix border bottom on tabs

This commit is contained in:
mabashian 2019-06-20 11:33:15 -04:00
parent 0a5f29ad22
commit f185d80b05

View File

@ -53,15 +53,11 @@ class Template extends Component {
const cardHeader = (contentLoading ? null const cardHeader = (contentLoading ? null
: ( : (
<CardHeader style={{ padding: 0 }}> <CardHeader style={{ padding: 0 }}>
<Fragment> <RoutedTabs
<div css="display: flex;"> history={history}
<RoutedTabs tabsArray={tabsArray}
history={history} />
tabsArray={tabsArray} <CardCloseButton linkTo="/templates" />
/>
<CardCloseButton linkTo="/templates" />
</div>
</Fragment>
</CardHeader> </CardHeader>
) )
); );