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.
53 lines
1.0 KiB
53 lines
1.0 KiB
3 years ago
|
.confirmation-network-switch {
|
||
|
&__center-icon {
|
||
|
position: relative;
|
||
|
height: 64px;
|
||
|
}
|
||
|
|
||
|
&__icon {
|
||
|
width: 64px;
|
||
|
}
|
||
|
|
||
|
&__check {
|
||
|
width: 32px;
|
||
|
height: 32px;
|
||
|
color: var(--color-primary-inverse);
|
||
|
background-color: var(--color-primary-default);
|
||
|
border-radius: 50%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
position: absolute;
|
||
|
filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.25));
|
||
|
|
||
|
&::before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
left: 35%;
|
||
|
top: 25%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[dir='rtl'] &__arrow {
|
||
|
transform: rotate(180deg);
|
||
|
}
|
||
|
|
||
|
&__dashed-line {
|
||
|
width: 130px;
|
||
|
border-bottom: 1px solid var(--color-border-muted);
|
||
|
border-style: dashed;
|
||
|
}
|
||
|
|
||
|
&__unknown-icon {
|
||
|
color: var(--color-icon-muted);
|
||
|
border-radius: 50%;
|
||
|
border: 1px solid var(--color-border-muted);
|
||
|
background-color: var(--color-background-alternative);
|
||
|
display: inline-flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
height: 64px;
|
||
|
width: 64px;
|
||
|
}
|
||
|
}
|