add bottom border to org tabs

This commit is contained in:
Alex Corey
2019-05-03 10:20:32 -04:00
parent a3fdb4aee3
commit b8b2209335
4 changed files with 17 additions and 36 deletions

View File

@@ -148,19 +148,17 @@ class Organization extends Component {
<I18n>
{({ i18n }) => (
<React.Fragment>
<div className="orgTabsContainer">
<div className="awx-orgTabs-container">
<RoutedTabs
className="orgTabsSection"
match={match}
history={history}
labeltext={i18n._(t`Organization detail tabs`)}
tabsArray={tabsArray}
/>
<CardCloseButton linkTo="/organizations" />
<div
className="orgTabsSection"
>
<CardCloseButton linkTo="/organizations" />
</div>
className="awx-orgTabs_bottom-border"
/>
</div>
</React.Fragment>
)}