nishant-design-system
Version:
Sense UI components library
37 lines (29 loc) • 703 B
CSS
@value (colorFillPrimary, colorBackgroundTertiary) from '../../styles/variables/_color.css';
@value (borderWidthTertiary) from '../../styles/variables/_border.css';
@value ( size34, size42, size60) from '../../styles/variables/_size.css';
.avatarGroupContainer {
display: flex;
flex-direction: row;
}
.avatarGroupContainer.largeSize {
height: size60;
}
.avatarGroupContainer.mediumSize {
height: size42;
}
.avatarGroupContainer.smallSize {
height: size34;
}
.avatarInGroup {
display: flex;
border: borderWidthTertiary solid colorBackgroundTertiary;
position: relative;
}
.nameList {
display: flex;
flex-direction: column;
}
.plusAvatar {
display: flex;
cursor: pointer;
}