2020-08-05 15:43:07 +02:00
|
|
|
.currency-display {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2020-08-05 15:43:07 +02:00
|
|
|
height: 54px;
|
2022-03-24 15:45:00 +01:00
|
|
|
border: 1px solid var(--color-border-default);
|
2020-08-05 15:43:07 +02:00
|
|
|
border-radius: 4px;
|
2022-03-24 15:45:00 +01:00
|
|
|
background-color: var(--color-background-default);
|
|
|
|
color: var(--color-text-muted);
|
2020-08-05 15:43:07 +02:00
|
|
|
padding: 8px 10px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&__primary-row {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-03-24 15:45:00 +01:00
|
|
|
color: var(--color-text-muted);
|
2020-08-05 15:43:07 +02:00
|
|
|
border: none;
|
|
|
|
max-width: 22ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__primary-currency {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-03-24 15:45:00 +01:00
|
|
|
color: var(--color-text-muted);
|
2020-08-05 15:43:07 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__converted-row {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__converted-value,
|
|
|
|
&__converted-currency {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H7;
|
|
|
|
|
2022-03-24 15:45:00 +01:00
|
|
|
color: var(--color-text-muted);
|
2020-08-05 15:43:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input-wrapper {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
input[type="number"] {
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="number"]::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="number"]:hover::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__currency-symbol {
|
|
|
|
margin-top: 1px;
|
2022-03-24 15:45:00 +01:00
|
|
|
color: var(--color-text-muted);
|
2020-08-05 15:43:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.react-numeric-input {
|
|
|
|
input[type="number"]::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="number"]:hover::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|