You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
986 B
58 lines
986 B
@import 'styles/variables.scss';
|
|
|
|
.container {
|
|
color: var(--primaryText);
|
|
|
|
.input {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
padding-bottom: 5px;
|
|
min-height: 14px;
|
|
}
|
|
|
|
textarea {
|
|
background: transparent;
|
|
outline: none;
|
|
border: 1px solid #404040;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
color: var(--lightningOrange);
|
|
-webkit-text-fill-color: var(--primaryText);
|
|
font-size: 14px;
|
|
width: 95%;
|
|
transition: all 0.25s;
|
|
|
|
&.error {
|
|
border: 1px solid var(--superRed);
|
|
}
|
|
}
|
|
|
|
textarea::-webkit-input-placeholder {
|
|
text-shadow: none;
|
|
-webkit-text-fill-color: initial;
|
|
}
|
|
|
|
.description {
|
|
margin-top: 8px;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.errorMessage {
|
|
margin-top: 8px;
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
color: var(--superRed);
|
|
display: none;
|
|
|
|
&.visible {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|