From 6e7e81206a7c85717d9cd663f1233eb2b1a52735 Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Thu, 25 Oct 2018 05:29:02 -0500 Subject: [PATCH] fix(profile): better username/UUID styling --- website/client/components/userMenu/profile.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/website/client/components/userMenu/profile.vue b/website/client/components/userMenu/profile.vue index 2237d1af9b..b799c25c49 100644 --- a/website/client/components/userMenu/profile.vue +++ b/website/client/components/userMenu/profile.vue @@ -43,9 +43,9 @@ div .header.mb-3 h1 {{user.profile.name}} div - strong(v-if='user.auth && user.auth.local && user.auth.local.username') @{{ user.auth.local.username }} + .name(v-if='user.auth && user.auth.local && user.auth.local.username') @{{ user.auth.local.username }} div - strong(v-if='this.userLoggedIn.contributor.admin') {{ user._id }} + .name(v-if='this.userLoggedIn.contributor.admin') {{ user._id }} .col-12.col-md-4 button.btn.btn-secondary(v-if='user._id === userLoggedIn._id', @click='editing = !editing') {{ $t('edit') }} .row(v-if='!editing') @@ -243,6 +243,11 @@ div cursor: pointer; } + .name { + color: $gray-200; + font-size: 16px; + } + #achievements { .box { margin: 0 auto;