44 lines
466 B
SCSS
44 lines
466 B
SCSS
.SignMessage {
|
|
text-align: center;
|
|
padding-top: 30px;
|
|
|
|
&-label {
|
|
float: left;
|
|
}
|
|
|
|
&-reset {
|
|
float: right;
|
|
|
|
.fa {
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
|
|
&-sign {
|
|
width: 100%;
|
|
}
|
|
|
|
&-help {
|
|
margin-top: 10px;
|
|
font-size: 13px;
|
|
font-style: italic;
|
|
}
|
|
|
|
&-inputBox {
|
|
min-height: 180px;
|
|
}
|
|
|
|
&-error {
|
|
opacity: 0;
|
|
transition: none;
|
|
|
|
&.is-showing {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&-buy {
|
|
margin-top: 10px;
|
|
}
|
|
}
|