2020-05-21 19:33:48 +02:00
|
|
|
.wallet-overview {
|
2018-07-31 07:03:20 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
flex: 1;
|
2020-10-06 20:28:38 +02:00
|
|
|
min-height: 209px;
|
2018-10-21 13:12:40 +02:00
|
|
|
min-width: 0;
|
2020-06-01 19:54:32 +02:00
|
|
|
padding-top: 10px;
|
2020-05-27 22:28:33 +02:00
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
2018-11-20 01:06:34 +01:00
|
|
|
|
2020-05-21 19:33:48 +02:00
|
|
|
&__balance {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
2020-05-27 22:28:33 +02:00
|
|
|
flex-direction: column;
|
2020-05-21 19:33:48 +02:00
|
|
|
align-items: center;
|
2020-05-27 22:28:33 +02:00
|
|
|
width: 100%;
|
2020-05-21 19:33:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2020-10-06 20:28:38 +02:00
|
|
|
height: 68px;
|
2020-06-01 19:54:32 +02:00
|
|
|
margin-bottom: 24px;
|
2020-05-21 19:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-15 19:02:38 +02:00
|
|
|
%asset-buttons {
|
|
|
|
min-width: initial;
|
|
|
|
width: 100px;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2020-06-15 19:02:38 +02:00
|
|
|
text-transform: uppercase;
|
2020-10-29 16:03:29 +01:00
|
|
|
font-weight: 500;
|
2020-06-15 19:02:38 +02:00
|
|
|
}
|
|
|
|
|
2020-05-21 19:33:48 +02:00
|
|
|
.eth-overview {
|
2018-07-31 07:03:20 +02:00
|
|
|
&__balance {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-10-21 13:12:40 +02:00
|
|
|
min-width: 0;
|
2019-01-30 13:16:12 +01:00
|
|
|
position: relative;
|
2020-05-27 22:28:33 +02:00
|
|
|
align-items: center;
|
|
|
|
margin: 16px 0;
|
|
|
|
padding: 0 16px;
|
2023-03-13 16:50:12 +01:00
|
|
|
max-width: 326px;
|
2018-08-03 05:20:15 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 13:16:12 +01:00
|
|
|
&__primary-container {
|
|
|
|
display: flex;
|
2023-03-13 16:50:12 +01:00
|
|
|
max-width: inherit;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
2019-01-30 13:16:12 +01:00
|
|
|
}
|
|
|
|
|
2018-07-31 07:03:20 +02:00
|
|
|
&__primary-balance {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H2;
|
|
|
|
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-text-default);
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 13:16:12 +01:00
|
|
|
&__cached-star {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
2023-03-06 20:34:06 +01:00
|
|
|
&__portfolio-button {
|
2023-03-13 16:50:12 +01:00
|
|
|
height: inherit;
|
|
|
|
padding-inline-start: 16px;
|
2023-03-06 20:34:06 +01:00
|
|
|
}
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__cached-balance,
|
|
|
|
&__cached-star {
|
2022-05-25 17:35:36 +02:00
|
|
|
color: var(--color-warning-default);
|
2019-01-30 13:16:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__cached-secondary-balance {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-08-13 00:14:59 +02:00
|
|
|
color: var(--color-warning-muted);
|
2019-01-30 13:16:12 +01:00
|
|
|
}
|
|
|
|
|
2018-07-31 07:03:20 +02:00
|
|
|
&__secondary-balance {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2022-04-28 15:03:12 +02:00
|
|
|
color: var(--color-text-alternative);
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
&__button:last-of-type {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__circle {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 36px;
|
|
|
|
width: 36px;
|
2022-03-22 14:31:47 +01:00
|
|
|
background: var(--color-primary-default);
|
2020-10-06 20:28:38 +02:00
|
|
|
border-radius: 18px;
|
|
|
|
margin-top: 6px;
|
2020-05-21 19:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.token-overview {
|
|
|
|
&__balance {
|
2018-07-31 07:03:20 +02:00
|
|
|
display: flex;
|
2020-05-21 19:33:48 +02:00
|
|
|
flex-direction: column;
|
2018-10-21 13:12:40 +02:00
|
|
|
min-width: 0;
|
2020-05-21 19:33:48 +02:00
|
|
|
position: relative;
|
2020-05-27 22:28:33 +02:00
|
|
|
align-items: center;
|
|
|
|
margin: 16px 0;
|
|
|
|
padding: 0 16px;
|
2023-04-21 04:27:18 +02:00
|
|
|
max-width: 326px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__primary-container {
|
|
|
|
display: flex;
|
|
|
|
max-width: inherit;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
|
2020-05-21 19:33:48 +02:00
|
|
|
&__primary-balance {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H2;
|
|
|
|
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-text-default);
|
2020-05-27 22:28:33 +02:00
|
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
|
2020-06-12 20:47:39 +02:00
|
|
|
&__secondary-balance {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H5;
|
|
|
|
|
2022-04-28 15:03:12 +02:00
|
|
|
color: var(--color-text-alternative);
|
2020-06-12 20:47:39 +02:00
|
|
|
}
|
|
|
|
|
2023-04-21 04:27:18 +02:00
|
|
|
&__portfolio-button {
|
|
|
|
height: inherit;
|
|
|
|
padding-inline-start: 16px;
|
|
|
|
}
|
|
|
|
|
2020-10-06 20:28:38 +02:00
|
|
|
&__button:last-of-type {
|
|
|
|
margin-right: 0;
|
2018-07-31 07:03:20 +02:00
|
|
|
}
|
|
|
|
}
|