Merge pull request #142 from mabashian/upgrade-pf-2.9.2

Upgrade pf react-core to 2.9.2
This commit is contained in:
Michael Abashian
2019-03-27 13:49:39 -04:00
committed by GitHub
3 changed files with 42 additions and 40 deletions

View File

@@ -1,16 +1,19 @@
import React from 'react';
const VerticalSeparator = () => (
<span style={{
content: '',
backgroundColor: '#d7d7d7',
width: '1px',
height: '30px',
display: 'block',
marginLeft: '20px',
marginRight: '20px'
}}
/>
<div>
<span style={{
content: '',
backgroundColor: '#d7d7d7',
width: '1px',
height: '30px',
display: 'inline-block',
verticalAlign: 'middle',
marginLeft: '20px',
marginRight: '20px'
}}
/>
</div>
);
export default VerticalSeparator;