Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix AccountCard stretch to 100% (#4450)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored Feb 7, 2017
1 parent 4172a53 commit 66df4f6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion js/src/modals/DappPermissions/dappPermissions.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@
}
}

.selected, .unselected {
.selected,
.unselected {
margin-bottom: 0.25em;
width: 100%;

&:focus {
outline: none;
Expand Down
6 changes: 5 additions & 1 deletion js/src/ui/Portal/portal.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,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,
Expand Down

0 comments on commit 66df4f6

Please sign in to comment.