diff --git a/static/scripts.js b/static/scripts.js
index 4ba4ae2..a7301d5 100644
--- a/static/scripts.js
+++ b/static/scripts.js
@@ -369,7 +369,7 @@ async function displayProfile(opts) {
feedback += `
`;
feedback += `
`;
// feedback += `
`;
- feedback += `
${keyData.users[i].userId.email} (primary)
`;
+ feedback += `
${keyData.users[i].userId.email} primary
`;
feedback += `
`;
if (userId.length === 0) {
diff --git a/static/styles.css b/static/styles.css
index de58c77..6ee0047 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -303,6 +303,7 @@ select {
#profileData {
background-color: #dceef957;
padding: 15px;
+ border-radius: 15px;
}
.profileDataItem {
@@ -346,6 +347,16 @@ select {
overflow: hidden;
text-overflow: ellipsis;
}
+
+.profileDataItem__value small {
+ color: white;
+ background: #2178ff;
+ border-radius: 6px;
+ padding: 2.8px 5px;
+ font-size: 0.65em;
+ vertical-align: middle;
+}
+
a.proofUrl {
color: #777;
}