Fix AccountCard stretch to 100% (#4450)

This commit is contained in:
Jaco Greeff 2017-02-07 08:46:17 +01:00 committed by GitHub
parent 4172a5369c
commit 66df4f6410
2 changed files with 8 additions and 2 deletions

View File

@ -31,8 +31,10 @@
} }
} }
.selected, .unselected { .selected,
.unselected {
margin-bottom: 0.25em; margin-bottom: 0.25em;
width: 100%;
&:focus { &:focus {
outline: none; outline: none;

View File

@ -34,7 +34,11 @@ export default class Portal extends Component {
activeStep: PropTypes.number, activeStep: PropTypes.number,
busy: PropTypes.bool, busy: PropTypes.bool,
busySteps: PropTypes.array, busySteps: PropTypes.array,
buttons: PropTypes.array, buttons: PropTypes.oneOfType([
PropTypes.array,
PropTypes.node,
PropTypes.object
]),
children: PropTypes.node, children: PropTypes.node,
className: PropTypes.string, className: PropTypes.string,
hideClose: PropTypes.bool, hideClose: PropTypes.bool,