Feat(LOY-311) Create avatar design system component * feat(LOY-311): Creat & use New Avatar Design System Component * refactor(LOY-311): replace avatar used in app header with design system component * fix(LOY-311): use correct space vars Approved-by: Erik Tiekstra
19 lines
293 B
CSS
19 lines
293 B
CSS
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x15);
|
|
}
|
|
|
|
.fullName {
|
|
color: var(--Text-Heading);
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.membershipInfo {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: var(--Space-x05);
|
|
color: var(--Scandic-Red-100);
|
|
}
|