2017-08-22 01:59:00 +02:00
|
|
|
.send-screen-wrapper {
|
|
|
|
display: flex;
|
2017-09-14 10:32:24 +02:00
|
|
|
flex-flow: column nowrap;
|
|
|
|
z-index: 25;
|
2017-08-22 02:59:08 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-09-14 18:56:40 +02:00
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
2017-09-14 20:45:59 +02:00
|
|
|
}
|
2017-09-14 18:56:40 +02:00
|
|
|
|
2017-09-14 20:45:59 +02:00
|
|
|
section {
|
|
|
|
flex: 0 0 auto;
|
2017-08-22 02:59:08 +02:00
|
|
|
}
|
2017-08-22 01:59:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-card {
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2022-07-22 00:43:31 +02:00
|
|
|
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
2017-09-14 10:32:24 +02:00
|
|
|
padding: 46px 40.5px 26px;
|
|
|
|
position: relative;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
width: 498px;
|
2017-09-14 20:45:59 +02:00
|
|
|
flex: 1 0 auto;
|
2017-09-14 18:56:40 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-09-14 18:56:40 +02:00
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
2017-08-22 01:59:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Send Screen */
|
|
|
|
|
|
|
|
.send-screen section {
|
|
|
|
margin: 4px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-08-22 01:59:00 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2017-08-22 18:03:42 +02:00
|
|
|
|
|
|
|
.send-eth-icon {
|
2017-09-14 10:32:24 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
width: 70px;
|
|
|
|
height: 70px;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-muted);
|
2022-07-22 00:43:31 +02:00
|
|
|
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
2017-09-14 10:32:24 +02:00
|
|
|
position: absolute;
|
|
|
|
top: -35px;
|
|
|
|
z-index: 25;
|
|
|
|
padding: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2017-09-14 18:56:40 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-09-14 18:56:40 +02:00
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
}
|
2017-08-22 21:47:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-input-wrapper {
|
|
|
|
width: 95%;
|
2017-08-24 18:24:48 +02:00
|
|
|
position: relative;
|
2017-09-12 08:18:54 +02:00
|
|
|
|
2017-09-14 10:32:24 +02:00
|
|
|
.fa-bolt {
|
|
|
|
padding-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.large-input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-default);
|
2017-09-14 10:32:24 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
margin: 4px 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-gas-input {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
|
2017-09-12 08:18:54 +02:00
|
|
|
&__error-message {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--error {
|
|
|
|
input,
|
|
|
|
.send-screen-gas-input {
|
2022-03-21 14:55:01 +01:00
|
|
|
border-color: var(--color-error-default) !important;
|
2017-09-12 08:18:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-input-wrapper__error-message {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-09-12 08:18:54 +02:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 4px;
|
|
|
|
left: 8px;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-error-default);
|
2017-09-12 08:18:54 +02:00
|
|
|
}
|
|
|
|
}
|
2017-09-20 19:37:12 +02:00
|
|
|
|
|
|
|
.send-screen-input-wrapper__error-message {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-09-20 19:37:12 +02:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 4px;
|
|
|
|
left: 8px;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-error-default);
|
2017-09-20 19:37:12 +02:00
|
|
|
}
|
2017-08-22 21:47:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-08-22 22:09:27 +02:00
|
|
|
.send-screen-gas-input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-08-22 22:09:27 +02:00
|
|
|
width: 100%;
|
2017-08-26 01:25:03 +02:00
|
|
|
height: 41px;
|
|
|
|
border-radius: 3px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2017-08-29 17:39:47 +02:00
|
|
|
border-width: 0;
|
2017-08-22 22:09:27 +02:00
|
|
|
border-style: none;
|
2017-08-26 01:25:03 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 12px;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2017-08-22 22:09:27 +02:00
|
|
|
}
|
|
|
|
|
2017-08-22 21:47:48 +02:00
|
|
|
.send-screen-amount-labels {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-screen-gas-labels {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2017-08-22 22:09:27 +02:00
|
|
|
|
2017-09-12 07:14:09 +02:00
|
|
|
.currency-toggle {
|
|
|
|
&__item {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-primary-default);
|
2017-09-12 07:14:09 +02:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&--selected {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-default);
|
2017-09-12 07:14:09 +02:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
2017-08-25 22:01:56 +02:00
|
|
|
}
|
|
|
|
|
2017-08-24 18:24:48 +02:00
|
|
|
.send-screen-gas-input-customize {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-primary-default);
|
2017-08-24 18:24:48 +02:00
|
|
|
cursor: pointer;
|
2017-08-24 21:55:03 +02:00
|
|
|
}
|
|
|
|
|
2017-08-28 19:39:05 +02:00
|
|
|
.gas-tooltip-close-area {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
.gas-tooltip-arrow {
|
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
|
|
|
z-index: 1200;
|
2022-03-21 14:55:01 +01:00
|
|
|
background: var(--color-background-default);
|
2017-08-25 18:18:52 +02:00
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
left: 107px;
|
|
|
|
top: 294px;
|
2022-07-22 00:43:31 +02:00
|
|
|
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
2017-08-25 18:18:52 +02:00
|
|
|
}
|
|
|
|
|
2017-08-29 20:39:56 +02:00
|
|
|
.gas-tooltip {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
.gas-tooltip-label {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2017-08-25 18:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-header {
|
|
|
|
padding-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-label {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-label i {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-icon-muted);
|
2017-08-25 18:18:52 +02:00
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-detail {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
right: 26px;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-muted);
|
2017-08-25 18:18:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-arrows {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2017-08-25 18:18:52 +02:00
|
|
|
position: absolute;
|
2017-08-29 17:39:47 +02:00
|
|
|
top: 0;
|
2017-10-13 22:19:22 +02:00
|
|
|
right: 4px;
|
2017-08-25 18:18:52 +02:00
|
|
|
width: 17px;
|
|
|
|
height: 28px;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-icon-muted);
|
2017-08-29 17:39:47 +02:00
|
|
|
border-left: 0;
|
2017-08-25 18:18:52 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-muted);
|
2017-08-25 18:18:52 +02:00
|
|
|
padding: 1px 4px;
|
2017-10-25 10:08:14 +02:00
|
|
|
cursor: pointer;
|
2017-08-29 17:39:47 +02:00
|
|
|
}
|
2017-09-07 13:24:03 +02:00
|
|
|
|
2017-09-13 10:25:39 +02:00
|
|
|
.token-gas {
|
|
|
|
&__amount {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__symbol {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 10:32:24 +02:00
|
|
|
.send-screen {
|
|
|
|
&__title {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2017-09-14 10:32:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__subtitle {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2017-09-14 10:32:24 +02:00
|
|
|
margin: 10px 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__send-button,
|
|
|
|
&__cancel-button {
|
|
|
|
width: 163px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-09-20 19:37:12 +02:00
|
|
|
|
|
|
|
&__send-button__disabled {
|
2020-07-15 15:13:40 +02:00
|
|
|
opacity: 0.5;
|
2017-09-20 19:37:12 +02:00
|
|
|
cursor: auto;
|
|
|
|
}
|
2017-09-14 10:32:24 +02:00
|
|
|
}
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
.send-token {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
z-index: 25;
|
|
|
|
|
2017-09-12 07:14:09 +02:00
|
|
|
&__content {
|
|
|
|
width: 498px;
|
|
|
|
height: 605px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2022-07-22 00:43:31 +02:00
|
|
|
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
2017-09-12 07:14:09 +02:00
|
|
|
padding: 46px 40.5px 26px;
|
|
|
|
position: relative;
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
2017-09-14 20:45:59 +02:00
|
|
|
flex: 1 0 auto;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-09-14 20:45:59 +02:00
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
2017-09-12 07:14:09 +02:00
|
|
|
}
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
.identicon {
|
|
|
|
position: absolute;
|
|
|
|
top: -35px;
|
|
|
|
z-index: 25;
|
2017-09-14 20:45:59 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-09-14 20:45:59 +02:00
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__description,
|
|
|
|
&__balance-text,
|
|
|
|
&__token-symbol {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
margin-top: 10px;
|
2017-09-14 20:45:59 +02:00
|
|
|
text-align: center;
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__token-balance {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H1;
|
|
|
|
|
2017-09-07 13:24:03 +02:00
|
|
|
margin-top: 13px;
|
2017-09-29 01:13:53 +02:00
|
|
|
|
|
|
|
.token-balance__amount {
|
|
|
|
padding-right: 12px;
|
|
|
|
}
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
2017-09-11 09:45:06 +02:00
|
|
|
|
2017-09-12 07:14:09 +02:00
|
|
|
&__button-group {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
align-items: center;
|
2017-09-14 20:45:59 +02:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-09-14 20:45:59 +02:00
|
|
|
margin-top: 24px;
|
|
|
|
}
|
2017-09-12 07:14:09 +02:00
|
|
|
|
|
|
|
button {
|
|
|
|
width: 163px;
|
|
|
|
}
|
|
|
|
}
|
2017-09-07 13:24:03 +02:00
|
|
|
}
|
2017-09-22 23:34:56 +02:00
|
|
|
|
|
|
|
.confirm-send-token {
|
|
|
|
&__hero-amount-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2017-10-05 17:44:45 +02:00
|
|
|
|
|
|
|
.send-v2 {
|
|
|
|
&__container {
|
|
|
|
width: 380px;
|
|
|
|
border-radius: 8px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2022-07-22 00:43:31 +02:00
|
|
|
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
2017-10-05 17:44:45 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
z-index: 25;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-10-05 17:44:45 +02:00
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
box-shadow: none;
|
2017-10-25 07:43:49 +02:00
|
|
|
flex: 1 1 auto;
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
&__send-header-icon-container {
|
|
|
|
z-index: 25;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-10-13 22:19:22 +02:00
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__send-header-icon {
|
2017-10-05 17:44:45 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-muted);
|
2017-10-05 17:44:45 +02:00
|
|
|
z-index: 25;
|
|
|
|
padding: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__arrow-background {
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2017-10-05 17:44:45 +02:00
|
|
|
height: 14px;
|
|
|
|
width: 14px;
|
|
|
|
position: absolute;
|
|
|
|
top: 52px;
|
|
|
|
left: 199px;
|
|
|
|
border-radius: 50%;
|
|
|
|
z-index: 100;
|
2017-10-19 19:53:56 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-10-19 19:53:56 +02:00
|
|
|
top: 36px;
|
|
|
|
}
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__header {
|
|
|
|
height: 88px;
|
|
|
|
width: 380px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-alternative);
|
2017-10-05 17:44:45 +02:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-10-19 19:53:56 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-10-19 19:53:56 +02:00
|
|
|
height: 59px;
|
2017-10-25 10:08:14 +02:00
|
|
|
width: 100vw;
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__header-tip {
|
|
|
|
height: 25px;
|
|
|
|
width: 25px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-alternative);
|
2017-10-05 17:44:45 +02:00
|
|
|
position: absolute;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
left: 178px;
|
2017-10-25 10:08:14 +02:00
|
|
|
top: 75px;
|
2017-10-19 19:53:56 +02:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-10-19 19:53:56 +02:00
|
|
|
top: 46px;
|
2017-10-25 10:08:14 +02:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H3;
|
|
|
|
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2017-10-05 17:44:45 +02:00
|
|
|
text-align: center;
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__copy {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2017-10-05 17:44:45 +02:00
|
|
|
text-align: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 287px;
|
|
|
|
}
|
|
|
|
|
2017-10-17 22:13:20 +02:00
|
|
|
&__error {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-10-17 22:13:20 +02:00
|
|
|
left: 8px;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-error-default);
|
2017-10-17 22:13:20 +02:00
|
|
|
}
|
|
|
|
|
2019-05-20 18:38:08 +02:00
|
|
|
&__error-amount {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
2019-01-23 19:09:56 +01:00
|
|
|
&__warning {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-01-23 19:09:56 +01:00
|
|
|
left: 8px;
|
2022-05-25 17:35:36 +02:00
|
|
|
color: var(--color-warning-default);
|
2019-01-23 19:09:56 +01:00
|
|
|
}
|
|
|
|
|
2017-10-17 22:13:20 +02:00
|
|
|
&__error-border {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-error-default);
|
2017-10-17 22:13:20 +02:00
|
|
|
}
|
|
|
|
|
2017-10-06 06:34:00 +02:00
|
|
|
&__form {
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2017-10-25 07:43:49 +02:00
|
|
|
margin: 0;
|
2017-10-19 23:08:52 +02:00
|
|
|
flex: 1 1 auto;
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-25 07:43:49 +02:00
|
|
|
&__form-header,
|
|
|
|
&__form-header-copy {
|
2017-10-19 19:53:56 +02:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: center;
|
2017-10-06 06:34:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__form-row {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin: 1rem 1rem 0;
|
2017-10-06 06:34:00 +02:00
|
|
|
position: relative;
|
2017-10-19 19:53:56 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
flex: 1 0 auto;
|
2017-10-06 06:34:00 +02:00
|
|
|
justify-content: space-between;
|
2020-10-29 16:03:45 +01:00
|
|
|
align-items: center;
|
2017-10-06 06:34:00 +02:00
|
|
|
}
|
|
|
|
|
2019-05-20 18:38:08 +02:00
|
|
|
&__form-field-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 277px;
|
|
|
|
}
|
|
|
|
|
2017-10-19 19:53:56 +02:00
|
|
|
&__form-field {
|
|
|
|
flex: 1 1 auto;
|
2018-11-20 01:06:34 +01:00
|
|
|
min-width: 0;
|
2018-02-13 07:39:15 +01:00
|
|
|
|
|
|
|
.currency-display {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2018-02-13 07:39:15 +01:00
|
|
|
|
|
|
|
&__currency-symbol {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2018-02-13 07:39:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__converted-value,
|
|
|
|
&__converted-currency {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2018-02-13 07:39:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.account-list-item {
|
|
|
|
&__account-secondary-balance {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2018-02-13 07:39:15 +01:00
|
|
|
}
|
|
|
|
}
|
2017-10-19 19:53:56 +02:00
|
|
|
}
|
|
|
|
|
2017-10-06 06:34:00 +02:00
|
|
|
&__form-label {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2019-02-06 01:24:28 +01:00
|
|
|
width: 95px;
|
2018-11-20 01:06:34 +01:00
|
|
|
flex: 0 0 auto;
|
2017-10-06 06:34:00 +02:00
|
|
|
}
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&__from-dropdown,
|
|
|
|
&__asset-dropdown {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2017-10-19 19:53:56 +02:00
|
|
|
width: 100%;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-muted);
|
2017-10-06 06:34:00 +02:00
|
|
|
border-radius: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
|
|
|
color: var(--color-text-default);
|
2017-10-30 23:39:27 +01:00
|
|
|
position: relative;
|
2017-10-06 06:34:00 +02:00
|
|
|
|
|
|
|
&__close-area {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2018-01-12 01:30:07 +01:00
|
|
|
|
2017-10-06 06:34:00 +02:00
|
|
|
&__list {
|
|
|
|
z-index: 1050;
|
|
|
|
position: absolute;
|
|
|
|
height: 220px;
|
2017-10-30 23:39:27 +01:00
|
|
|
width: 100%;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-muted);
|
2017-10-06 06:34:00 +02:00
|
|
|
border-radius: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2022-07-22 00:43:31 +02:00
|
|
|
box-shadow: var(--shadow-size-sm) var(--color-shadow-default);
|
2017-10-06 06:34:00 +02:00
|
|
|
margin-top: 11px;
|
|
|
|
margin-left: -1px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&__from-dropdown {
|
|
|
|
height: 73px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__asset-dropdown {
|
2019-04-18 05:11:04 +02:00
|
|
|
height: 54px;
|
2019-04-17 21:15:13 +02:00
|
|
|
border: none;
|
2021-02-19 20:03:44 +01:00
|
|
|
position: relative;
|
2019-04-17 21:15:13 +02:00
|
|
|
|
2019-07-24 01:51:13 +02:00
|
|
|
&__single-asset {
|
|
|
|
display: flex;
|
2020-07-15 15:13:40 +02:00
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 8px;
|
2019-07-24 01:51:13 +02:00
|
|
|
}
|
|
|
|
|
2021-02-19 20:03:44 +01:00
|
|
|
&__caret {
|
2022-05-25 17:35:36 +02:00
|
|
|
color: var(--color-icon-default);
|
2021-02-19 20:03:44 +01:00
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&__asset {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
align-items: center;
|
2019-04-18 05:11:04 +02:00
|
|
|
padding: 0 8px;
|
2019-04-17 21:15:13 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__asset-icon {
|
|
|
|
.identicon {
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-muted);
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__asset-data {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
margin-left: 8px;
|
2020-03-16 23:50:07 +01:00
|
|
|
flex-grow: 1;
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-max {
|
2022-01-20 18:49:49 +01:00
|
|
|
&__asset-data {
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&__symbol {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
margin-bottom: 2px;
|
2022-01-20 18:49:49 +01:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
|
|
|
|
&__label {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-right: 0.25rem;
|
2022-01-27 18:26:33 +01:00
|
|
|
min-width: 52px;
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__close-area {
|
|
|
|
z-index: 2000;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__list {
|
|
|
|
z-index: 2050;
|
|
|
|
position: absolute;
|
|
|
|
height: 220px;
|
|
|
|
width: 100%;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-muted);
|
2019-04-17 21:15:13 +02:00
|
|
|
border-radius: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2022-07-22 00:43:31 +02:00
|
|
|
box-shadow: var(--shadow-size-sm) var(--color-shadow-default);
|
2019-04-18 05:11:04 +02:00
|
|
|
top: 65px;
|
2019-04-17 21:15:13 +02:00
|
|
|
left: 0;
|
|
|
|
box-sizing: content-box;
|
|
|
|
overflow-y: scroll;
|
2019-04-18 05:11:04 +02:00
|
|
|
margin-top: 0;
|
|
|
|
padding: 4px 0;
|
|
|
|
|
|
|
|
.send-v2__asset-dropdown__asset {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input-wrapper {
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-muted);
|
2019-04-17 21:15:13 +02:00
|
|
|
border-radius: 4px;
|
2019-04-18 05:11:04 +02:00
|
|
|
height: 100%;
|
2019-04-17 21:15:13 +02:00
|
|
|
|
|
|
|
&--opened {
|
|
|
|
position: relative;
|
|
|
|
z-index: 2050;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-v2__asset-dropdown__asset {
|
2019-04-18 05:11:04 +02:00
|
|
|
height: 100%;
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
&:hover {
|
2022-11-17 21:53:51 +01:00
|
|
|
background-color: var(--color-background-default-hover);
|
2019-04-17 21:15:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2019-04-17 21:15:13 +02:00
|
|
|
z-index: 1025;
|
|
|
|
position: relative;
|
|
|
|
height: 54px;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
|
|
|
color: var(--color-text-alternative);
|
2019-04-17 21:15:13 +02:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__memo-text-area,
|
|
|
|
&__hex-data {
|
2017-10-06 12:30:45 +02:00
|
|
|
&__input {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2018-09-14 01:23:04 +02:00
|
|
|
z-index: 1025;
|
2018-09-13 04:57:35 +02:00
|
|
|
position: relative;
|
2017-10-06 12:30:45 +02:00
|
|
|
height: 54px;
|
2017-10-19 19:53:56 +02:00
|
|
|
width: 100%;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-border-muted);
|
2017-10-06 12:30:45 +02:00
|
|
|
border-radius: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
|
|
|
color: var(--color-text-alternative);
|
2017-10-06 12:30:45 +02:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-26 18:43:12 +02:00
|
|
|
&__amount-max {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H7;
|
|
|
|
|
2019-05-20 18:38:08 +02:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 56px;
|
|
|
|
height: 20px;
|
|
|
|
margin-top: 5px;
|
2021-10-05 21:20:42 +02:00
|
|
|
border-radius: 100px;
|
2019-05-20 18:38:08 +02:00
|
|
|
|
|
|
|
&__button {
|
|
|
|
width: 56px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-primary-default);
|
2021-10-05 21:20:42 +02:00
|
|
|
border-radius: 100px;
|
2019-05-20 18:38:08 +02:00
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-primary-default);
|
|
|
|
background: var(--color-background-default);
|
2019-05-20 18:38:08 +02:00
|
|
|
|
|
|
|
&__disabled {
|
2022-03-21 14:55:01 +01:00
|
|
|
opacity: 0.5;
|
2019-05-20 18:38:08 +02:00
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + &__button {
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-primary-default);
|
|
|
|
border: 1px solid var(--color-primary-default);
|
|
|
|
color: var(--color-primary-inverse);
|
2019-05-20 18:38:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__amount-max input {
|
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2017-10-26 18:43:12 +02:00
|
|
|
}
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
&__sliders-icon-container {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-primary-default);
|
2017-10-13 22:19:22 +02:00
|
|
|
border-radius: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2017-10-13 22:19:22 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 15px;
|
|
|
|
top: 14px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__sliders-icon {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-primary-default);
|
2017-10-13 22:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__memo-text-area {
|
|
|
|
&__input {
|
|
|
|
padding: 6px 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-05 17:44:45 +02:00
|
|
|
&__footer {
|
|
|
|
height: 92px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
align-items: center;
|
2022-03-21 14:55:01 +01:00
|
|
|
border-top: 1px solid var(--color-border-muted);
|
|
|
|
background: var(--color-background-default);
|
2017-10-19 23:08:52 +02:00
|
|
|
padding: 0 12px;
|
2018-01-12 01:30:07 +01:00
|
|
|
flex-shrink: 0;
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__next-btn,
|
2018-01-12 01:30:07 +01:00
|
|
|
&__cancel-btn {
|
2017-10-05 17:44:45 +02:00
|
|
|
width: 163px;
|
2017-10-24 10:19:00 +02:00
|
|
|
margin: 0 4px;
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
&__gas-modal-card {
|
|
|
|
width: 360px;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
|
|
&__title {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
height: 26px;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2017-10-13 22:19:22 +02:00
|
|
|
margin-top: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__copy {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
height: 38px;
|
|
|
|
width: 314px;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-text-alternative);
|
2017-10-13 22:19:22 +02:00
|
|
|
margin-top: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gas-tooltip-input-arrows {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H4;
|
|
|
|
|
2017-10-13 22:19:22 +02:00
|
|
|
width: 32px;
|
|
|
|
height: 54px;
|
2022-03-21 14:55:01 +01:00
|
|
|
border-left: 1px solid var(--color-border-muted);
|
|
|
|
color: var(--color-text-alternative);
|
2020-07-15 15:13:40 +02:00
|
|
|
right: 0;
|
2018-09-15 21:22:10 +02:00
|
|
|
padding: 0;
|
2017-10-13 22:19:22 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2018-09-15 21:22:10 +02:00
|
|
|
.gas-tooltip-input-arrow-wrapper {
|
|
|
|
align-items: center;
|
|
|
|
align-self: stretch;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2022-01-20 18:49:49 +01:00
|
|
|
input[type='number']::-webkit-inner-spin-button {
|
2017-10-13 22:19:22 +02:00
|
|
|
-webkit-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-01-20 18:49:49 +01:00
|
|
|
input[type='number']:hover::-webkit-inner-spin-button {
|
2017-10-13 22:19:22 +02:00
|
|
|
-webkit-appearance: none;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-09-13 14:35:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.advanced-gas-options-btn {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2018-09-13 14:35:17 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-primary-default);
|
2018-09-13 14:35:17 +02:00
|
|
|
cursor: pointer;
|
2019-05-20 18:38:08 +02:00
|
|
|
margin-top: 5px;
|
2017-10-05 17:44:45 +02:00
|
|
|
}
|
2018-03-09 06:33:36 +01:00
|
|
|
|
|
|
|
.sliders-icon-container {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2018-03-09 06:33:36 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2022-03-21 14:55:01 +01:00
|
|
|
border: 1px solid var(--color-primary-default);
|
2018-03-09 06:33:36 +01:00
|
|
|
border-radius: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2018-03-09 06:33:36 +01:00
|
|
|
position: absolute;
|
|
|
|
right: 15px;
|
|
|
|
top: 14px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2018-09-13 14:35:17 +02:00
|
|
|
.gas-fee-reset {
|
2020-10-29 16:03:45 +01:00
|
|
|
@include H6;
|
|
|
|
|
2018-09-13 14:35:17 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 24px;
|
|
|
|
border-radius: 4px;
|
2022-03-21 14:55:01 +01:00
|
|
|
background-color: var(--color-background-default);
|
2018-09-13 14:35:17 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 12px;
|
|
|
|
top: 14px;
|
|
|
|
cursor: pointer;
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-primary-default);
|
2018-09-13 14:35:17 +02:00
|
|
|
}
|
|
|
|
|
2018-03-09 06:33:36 +01:00
|
|
|
.sliders-icon {
|
2022-03-21 14:55:01 +01:00
|
|
|
color: var(--color-primary-default);
|
2018-07-16 22:51:02 +02:00
|
|
|
}
|