From 873f1c81a91d2aeaa176b286c8f67fd94ab66f6d Mon Sep 17 00:00:00 2001
From: JustTemmie <47639983+JustTemmie@users.noreply.github.com>
Date: Fri, 4 Jul 2025 06:34:15 +0200
Subject: [PATCH] fix: remove weird spacing due to weird profile popup
inheritance
---
components/MemberEntry.vue | 7 +------
components/Settings/UserSettings/Account.vue | 4 ----
components/Settings/UserSettings/Profile.vue | 4 ++--
3 files changed, 3 insertions(+), 12 deletions(-)
diff --git a/components/MemberEntry.vue b/components/MemberEntry.vue
index 3eed3c5..c77c429 100644
--- a/components/MemberEntry.vue
+++ b/components/MemberEntry.vue
@@ -3,7 +3,7 @@
{{ props.member.user.display_name ?? props.member.user.username }}
-
+
@@ -32,9 +32,4 @@ const hidePopup = () => {
.member-item {
position: relative; /* Set the position to relative for absolute positioning of the popup */
}
-
-.profile-popup {
- position: absolute; /* Use absolute positioning */
- left: -100px; /* Adjust this value to position the popup to the left */
-}
diff --git a/components/Settings/UserSettings/Account.vue b/components/Settings/UserSettings/Account.vue
index 85589e7..ffbb9d7 100644
--- a/components/Settings/UserSettings/Account.vue
+++ b/components/Settings/UserSettings/Account.vue
@@ -93,8 +93,4 @@ async function deleteAccount() {
color: var(--text-color);
background-color: var(--accent-color);
}
-
-.profile-popup {
- margin-left: 2dvw;
-}
\ No newline at end of file
diff --git a/components/Settings/UserSettings/Profile.vue b/components/Settings/UserSettings/Profile.vue
index 13a717a..f1a550b 100644
--- a/components/Settings/UserSettings/Profile.vue
+++ b/components/Settings/UserSettings/Profile.vue
@@ -20,7 +20,7 @@
-
+
@@ -133,7 +133,7 @@ async function changeAvatar() {
background-color: var(--accent-color);
}
-.profile-popup {
+#profile-popup {
margin-left: 2dvw;
}
\ No newline at end of file