MyCrypto/common/components/ParityQrSigner.scss
Maciej Hirsz 307e941684 Parity Signer (#1349)
* Parity Signer Squashed

* ParitySigner to be a container

* Parity Signer: style and polish

* target blank on appstore links

* PR fixes

* Move QrSignerModal to SendTransaction container

* Rework redux, use signing saga

* Cleanup

* Use new logo, change helpLink

* Rework finalize actions and types a bit

* Webcam info + wiki link on unlock screen

* Make the Parity QR Signer its own component, that has error messaging and ismore robust about adding / removing cameras.

* Unneded l10n
2018-04-06 16:32:25 -05:00

31 lines
508 B
SCSS

@import 'common/sass/variables';
.ParityQrSigner {
display: flex;
align-items: center;
justify-content: center;
width: 300px;
height: 300px;
text-align: center;
margin: 0 auto 1.5em;
border-radius: 4px;
overflow: hidden;
&.is-disabled {
background: $gray-lighter;
}
&-error {
padding: $space;
font-size: $font-size-small;
color: $gray-light;
&-icon {
display: block;
font-size: 60px;
margin-bottom: $space-md;
opacity: 0.8;
}
}
}