discourse/app/assets/stylesheets/common/select-kit/user-row.scss
Jarek Radosz ea326906e3
DEV: Use css var font sizes (#18518)
For consistency and and the ability to change all font sizes at once in the dev tools
2022-10-12 15:31:59 +02:00

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;
}
}
}