devapp: some CSS tweaks to the contributor dashboard

Change-Id: I00a515ced978902541f1cdb3fcdc404c07e1e460
Reviewed-on: https://go-review.googlesource.com/48456
Reviewed-by: Andrew Bonventre <andybons@golang.org>
This commit is contained in:
Andrew Bonventre 2017-07-13 17:31:11 -06:00
Родитель 44295aee19
Коммит 440ca734e5
1 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -27,6 +27,7 @@ a:visited {
}
.Site-content {
border-right: 1px solid #3a3939;
overflow: hidden;
padding: 1.5em;
width: 60%;
}
@ -39,6 +40,10 @@ a:visited {
height: 60px;
margin-right: 2em;
}
.Site-pointsTitle,
.Site-points {
text-align: center;
}
.Site-pointsTitle {
font-size: 4vh;
letter-spacing: 1px;
@ -55,9 +60,9 @@ a:visited {
flex-wrap: wrap;
}
.AvatarGroup-avatar {
height: 5vh;
height: 6vh;
margin: 0 .5em .5em 0;
width: 5vh;
width: 6vh;
}
.Activity {
align-items: flex-start;
@ -182,7 +187,7 @@ a:visited {
Object.keys(avatarMap).forEach(k => {
const el = avatarMap[k];
el.classList.add('AvatarGroup-avatar');
avatarGroupEl.appendChild(el);
avatarGroupEl.insertBefore(el, avatarGroupEl.firstChild);
});
}