2020-02-28 22:46:01 +01:00
|
|
|
.home {
|
|
|
|
&__container {
|
|
|
|
display: flex;
|
2020-05-13 18:12:34 +02:00
|
|
|
min-height: 100%;
|
2020-02-28 22:46:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&__main-view {
|
|
|
|
flex: 1 1 66.5%;
|
2022-03-16 15:49:25 +01:00
|
|
|
background: var(--color-background-default);
|
2020-02-28 22:46:01 +01:00
|
|
|
min-width: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__balance-wrapper {
|
2020-05-27 22:28:33 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
|
|
|
flex: 0 0 auto;
|
2020-02-28 22:46:01 +01:00
|
|
|
}
|
2020-04-01 18:35:07 +02:00
|
|
|
|
2020-05-14 05:16:47 +02:00
|
|
|
// TODO: fix style import order so this isn't required to override specificity of `tab` class
|
2020-06-04 18:42:45 +02:00
|
|
|
&__main-view &__tabs {
|
|
|
|
border: none;
|
2023-04-03 19:57:14 +02:00
|
|
|
padding: 0 16px;
|
2020-06-04 18:42:45 +02:00
|
|
|
}
|
|
|
|
|
2020-05-14 05:16:47 +02:00
|
|
|
&__main-view &__tab {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H6;
|
|
|
|
|
2020-04-01 18:35:07 +02:00
|
|
|
flex-grow: 1;
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-icon-default);
|
2020-05-14 05:16:47 +02:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__main-view &__tab--active {
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-primary-default);
|
2020-04-01 18:35:07 +02:00
|
|
|
}
|
2020-04-22 19:11:36 +02:00
|
|
|
|
2020-11-05 19:05:41 +01:00
|
|
|
&__main-view &__tab button {
|
2023-04-03 19:57:14 +02:00
|
|
|
padding: 8px;
|
2020-11-05 19:05:41 +01:00
|
|
|
}
|
|
|
|
|
2020-04-22 19:11:36 +02:00
|
|
|
&__connect-status-text {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2020-07-29 17:35:53 +02:00
|
|
|
@include H6;
|
2020-07-15 15:13:40 +02:00
|
|
|
|
2020-04-22 19:11:36 +02:00
|
|
|
padding-left: 24px;
|
|
|
|
padding-right: 24px;
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-text-default);
|
2020-04-22 19:11:36 +02:00
|
|
|
|
|
|
|
div {
|
2020-06-21 23:00:06 +02:00
|
|
|
margin-bottom: 20px;
|
|
|
|
|
2020-04-22 19:11:36 +02:00
|
|
|
&:last-child {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-bottom: 0;
|
2020-04-22 19:11:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__connected-status-popover {
|
|
|
|
width: 329px;
|
2020-06-21 23:00:06 +02:00
|
|
|
margin-top: -15px;
|
2020-04-22 19:11:36 +02:00
|
|
|
|
|
|
|
.popover-header {
|
2020-06-21 23:00:06 +02:00
|
|
|
padding-bottom: 20px;
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2020-04-22 19:11:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.popover-content {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popover-arrow {
|
|
|
|
top: -6px;
|
|
|
|
left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.popover-footer {
|
2020-10-29 17:31:48 +01:00
|
|
|
@include H6;
|
|
|
|
|
2020-06-21 23:00:06 +02:00
|
|
|
border-top: 0;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding-top: 20px;
|
2020-04-22 19:11:36 +02:00
|
|
|
|
|
|
|
& :only-child {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
height: 39px;
|
|
|
|
width: 133px;
|
|
|
|
border-radius: 39px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2020-06-21 23:00:06 +02:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
a,
|
|
|
|
a:hover {
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-primary-alternative);
|
2020-06-21 23:00:06 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2020-04-22 19:11:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__connected-status-popover-bg {
|
2020-06-21 23:00:06 +02:00
|
|
|
height: 55px;
|
|
|
|
width: 120px;
|
2020-04-22 19:11:36 +02:00
|
|
|
border-radius: 34px;
|
|
|
|
position: absolute;
|
2020-06-21 23:00:06 +02:00
|
|
|
top: 73px;
|
2020-04-22 19:11:36 +02:00
|
|
|
opacity: 1;
|
2022-07-22 00:43:31 +02:00
|
|
|
box-shadow: var(--shadow-size-lg) var(--color-shadow-default);
|
2020-04-22 19:11:36 +02:00
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__connected-status-popover-bg-container {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-04-23 00:31:13 +02:00
|
|
|
|
|
|
|
&__support {
|
|
|
|
padding: 10px 0 20px 0;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
a {
|
2022-03-16 15:49:25 +01:00
|
|
|
color: var(--color-primary-default);
|
2021-04-23 00:31:13 +02:00
|
|
|
}
|
|
|
|
}
|
2021-10-25 22:38:43 +02:00
|
|
|
|
|
|
|
&__new-network-notification {
|
|
|
|
margin-bottom: 50px;
|
|
|
|
}
|
|
|
|
|
2022-03-31 16:02:47 +02:00
|
|
|
&__new-network-notification {
|
2021-10-25 22:38:43 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2022-03-21 16:29:57 +01:00
|
|
|
align-items: center;
|
2021-10-25 22:38:43 +02:00
|
|
|
|
2022-03-31 16:02:47 +02:00
|
|
|
&-icon {
|
2022-03-21 16:29:57 +01:00
|
|
|
margin-right: 8px;
|
2022-03-31 16:02:47 +02:00
|
|
|
padding-top: 8px;
|
2022-03-21 16:29:57 +01:00
|
|
|
color: var(--color-success-default);
|
2021-10-25 22:38:43 +02:00
|
|
|
}
|
|
|
|
|
2022-03-31 16:02:47 +02:00
|
|
|
&-close {
|
|
|
|
color: var(--color-icon-default);
|
|
|
|
background: none;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
2021-10-25 22:38:43 +02:00
|
|
|
}
|
2022-02-15 01:02:51 +01:00
|
|
|
|
|
|
|
&__error-message {
|
|
|
|
left: 8px;
|
|
|
|
}
|
2022-03-31 16:02:47 +02:00
|
|
|
|
|
|
|
&__new-nft-notification {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
|
|
&-icon {
|
|
|
|
margin-right: 10px;
|
|
|
|
padding-top: 6px;
|
|
|
|
color: var(--color-success-default);
|
|
|
|
}
|
|
|
|
|
|
|
|
&-close {
|
|
|
|
color: var(--color-icon-default);
|
|
|
|
background: none;
|
|
|
|
margin-left: 44px;
|
|
|
|
}
|
|
|
|
}
|
2022-05-09 19:47:06 +02:00
|
|
|
|
|
|
|
&__new-tokens-imported-notification {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
margin-inline-start: 8px;
|
|
|
|
padding: 8px;
|
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-min {
|
2022-05-09 19:47:06 +02:00
|
|
|
margin-bottom: 50px;
|
|
|
|
margin-inline-end: 8px;
|
|
|
|
left: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-title,
|
|
|
|
&-message {
|
|
|
|
text-align: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-icon {
|
|
|
|
@include H3;
|
|
|
|
|
|
|
|
margin-inline-end: 12px;
|
|
|
|
padding-top: 12px;
|
|
|
|
color: var(--color-success-default);
|
|
|
|
}
|
|
|
|
|
|
|
|
&-close {
|
|
|
|
color: var(--color-icon-default);
|
|
|
|
background: none;
|
|
|
|
margin-inline-start: 32px;
|
|
|
|
}
|
|
|
|
}
|
2022-06-30 18:19:07 +02:00
|
|
|
|
|
|
|
&__new-network-added {
|
|
|
|
border-radius: 10px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&__check-circle {
|
|
|
|
color: var(--color-success-default);
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__switch-to-button {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
2022-09-13 15:41:58 +02:00
|
|
|
|
|
|
|
&__subheader-link {
|
|
|
|
display: flex;
|
|
|
|
padding: 12px 0;
|
|
|
|
justify-content: center;
|
|
|
|
color: var(--color-primary-default);
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&--tooltip-content {
|
|
|
|
&-header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
|
|
&-text {
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 22.82px;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-button {
|
|
|
|
background-color: var(--color-primary-default);
|
|
|
|
color: var(--color-primary-inverse);
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-text-bold {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--tooltip-theme {
|
|
|
|
background-color: var(--color-primary-default) !important;
|
|
|
|
|
|
|
|
& .tippy-tooltip-content {
|
|
|
|
color: var(--color-primary-inverse) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .arrow-regular {
|
|
|
|
border-bottom-color: var(--color-primary-default) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--text {
|
|
|
|
margin-left: 8px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 140.62%;
|
|
|
|
}
|
|
|
|
}
|
2020-02-28 21:27:22 +01:00
|
|
|
}
|