Fix AccountCard stretch to 100% (#4450) (#4451)

This commit is contained in:
Jaco Greeff 2017-02-07 08:54:10 +01:00 committed by GitHub
parent 2e595d60f0
commit 0994b91af5
2 changed files with 8 additions and 2 deletions

View File

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

View File

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