mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
119a5a4dc4
* added avatar token component * added avatar token component story * added avatar token readme to story * added avatar token readme to story * added halo effect * added test to avatar token component * fixed alt name * added test for blur * added test for aria hidden element * fixed fallback issue * updated halo id in README * added changes to avatar token stories * updated stories and README in storybook * fixed indentation in stories * changed component name structure * updated css for avatar halo image * updated README for Avatar Base Component * added className to avatar Token * Updates to docs and styles * fixed tests for Avatar Token * added color to the props * fixed table props issue * updated avatar token Readme * updated args in avatar token stories Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
33 lines
442 B
SCSS
33 lines
442 B
SCSS
.base-avatar {
|
|
--avatar-size: var(--size, 16px);
|
|
|
|
&--size-xs {
|
|
--size: 16px;
|
|
}
|
|
|
|
&--size-sm {
|
|
--size: 24px;
|
|
}
|
|
|
|
&--size-md {
|
|
--size: 32px;
|
|
}
|
|
|
|
&--size-lg {
|
|
--size: 40px;
|
|
}
|
|
|
|
&--size-xl {
|
|
--size: 48px;
|
|
}
|
|
|
|
height: var(--avatar-size);
|
|
width: var(--avatar-size);
|
|
border-radius: 100%;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-transform: uppercase;
|
|
}
|