sigit.io/src/components/UserAvatar/styles.module.scss

18 lines
259 B
SCSS
Raw Normal View History

.container {
display: flex;
align-items: center;
gap: 10px;
// flex-grow: 1;
}
.username {
cursor: pointer;
font-weight: 500;
font-size: 14px;
color: var(--text-color);
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}