mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
88af4b3c36
* Avatar Token HouseKeeping * updated props * fixed indentation and avatar size * fixed lint issues * updated sizes * fixed alignment of avatar token halo stories * updated story for src * updated avatar token * updated README * updated Readme
24 lines
352 B
SCSS
24 lines
352 B
SCSS
.mm-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%;
|
|
}
|
|
}
|
|
}
|