mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
8fef9fd8df
Co-authored-by: Amer Kadic <amerkadic@Amers-MacBook-Pro.local> Co-authored-by: George Marshall <george.marshall@consensys.net>
53 lines
1.0 KiB
SCSS
53 lines
1.0 KiB
SCSS
.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;
|
|
}
|
|
}
|