mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
24 lines
349 B
SCSS
24 lines
349 B
SCSS
|
.avatar-token {
|
||
|
&--with-halo {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
&__token-image {
|
||
|
width: 100%;
|
||
|
|
||
|
&--blurred {
|
||
|
filter: blur(20px);
|
||
|
}
|
||
|
|
||
|
&--size-reduced {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
width: 62.5%;
|
||
|
height: 62.5%;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
}
|
||
|
}
|