fix background of embedded signer (#3026)

This commit is contained in:
Jannis Redmann 2016-10-31 23:37:12 +01:00 committed by Jaco Greeff
parent e024afacf3
commit 93400810db
3 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@
.container {
flex: 1;
padding: 0em;
background: rgba(0, 0, 0, 0.8) !important;
background: rgba(0, 0, 0, 0.8);
}
.compact,

View File

@ -54,6 +54,7 @@
flex: 1;
overflow: auto;
display: flex;
background: rgba(0, 0, 0, 0.8);
}
.corner {

View File

@ -40,7 +40,7 @@ class Embedded extends Component {
render () {
return (
<Container>
<Container style={ { background: 'transparent' } }>
<div className={ styles.signer }>
{ this.renderPendingRequests() }
</div>