27 lines
293 B
SCSS
27 lines
293 B
SCSS
|
.TrezorDecrypt {
|
||
|
text-align: center;
|
||
|
padding-top: 30px;
|
||
|
|
||
|
&-decrypt {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
&-help {
|
||
|
margin-top: 10px;
|
||
|
font-size: 13px;
|
||
|
}
|
||
|
|
||
|
&-error {
|
||
|
opacity: 0;
|
||
|
transition: none;
|
||
|
|
||
|
&.is-showing {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&-buy {
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
}
|