UX: correct ordering of username / fullname in UX

This commit is contained in:
Sam 2018-10-02 12:56:50 +10:00
parent 533315a607
commit 120c220c18
1 changed files with 9 additions and 5 deletions

View File

@ -425,21 +425,25 @@ span.highlighted {
line-height: $line-height-medium; line-height: $line-height-medium;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
.full-name { .full-name {
font-weight: bold; font-weight: bold;
}
.first {
order: 1; order: 1;
flex-basis: 100%;
} }
.staff-notes-icon {
order: 2;
margin-left: 4px;
}
.poster-icon { .poster-icon {
order: 2; order: 2;
} }
.username {
.second {
order: 3; order: 3;
flex-basis: 100%; flex-basis: 100%;
} }
.user-title { .user-title {
order: 4; order: 4;
flex-basis: 100%; flex-basis: 100%;