Add Organization Details view and test

This commit is contained in:
Marliana Lara
2019-02-01 09:16:49 -05:00
parent a2007b8e0c
commit 8846e1427e
7 changed files with 285 additions and 25 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
import { Chip } from '@patternfly/react-core';
import './basicChip.scss';
const BasicChip = ({ text }) => (
<Chip
className="awx-c-chip--basic"
>
{text}
</Chip>
);
export default BasicChip;

View File

@@ -0,0 +1,10 @@
.awx-c-chip--basic {
padding: 6px 8px;
height: 30px;
margin-right: 10px;
margin-bottom: 10px;
.pf-c-button {
display: none;
}
}

View File

@@ -1,6 +1,8 @@
.pf-c-card__header {
--pf-c-card__header--PaddingBottom: 0;
--pf-c-card__header--PaddingX: 0;
--pf-c-card__header--PaddingRight: 0;
--pf-c-card__header--PaddingLeft: 0;
--pf-c-card__header--PaddingTop: 0;
}