mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:15:32 +08:00
ea326906e3
For consistency and and the ability to change all font sizes at once in the dev tools
23 lines
397 B
SCSS
23 lines
397 B
SCSS
.user-chooser {
|
|
.select-kit-row.user-row {
|
|
.avatar {
|
|
margin-left: 0;
|
|
margin-right: 0.5em;
|
|
}
|
|
|
|
.username {
|
|
color: var(--primary);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.name {
|
|
color: var(--primary-high);
|
|
font-size: var(--font-down-1);
|
|
margin-left: 0.5em;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|