aboutsummaryrefslogtreecommitdiff
path: root/profile/public
diff options
context:
space:
mode:
Diffstat (limited to 'profile/public')
-rw-r--r--profile/public/style.css2
-rw-r--r--profile/public/user.js1
2 files changed, 1 insertions, 2 deletions
diff --git a/profile/public/style.css b/profile/public/style.css
index beac063..1fc5a9d 100644
--- a/profile/public/style.css
+++ b/profile/public/style.css
@@ -65,7 +65,7 @@ img {
opacity: 0.8;
}
-#user h1:after:not(".hidden-chevron"),
+#user h1:after,
#comments h2:after,
#char h2:after {
content: url(/feather/icons/chevron-up.svg);
diff --git a/profile/public/user.js b/profile/public/user.js
index 12f2fd6..22d31cc 100644
--- a/profile/public/user.js
+++ b/profile/public/user.js
@@ -11,7 +11,6 @@ async function addUser(userData) {
const { user } = userData;
const h1 = document.createElement("h1");
h1.textContent = `${user.name} ${user.middlename || ""} ${user.surname}`;
- h1.classList.add("hidden-chevron");
userDiv.append(h1);
document.querySelector("title").textContent = h1.textContent;
return;