From 221c80071582050a6431ead2f3364a278444468c Mon Sep 17 00:00:00 2001 From: Temmie Date: Mon, 11 Aug 2025 01:21:43 +0200 Subject: [PATCH 1/2] fix: remove zero-width scrollbar in profile about me --- components/Modal/ProfilePopup.vue | 6 ------ 1 file changed, 6 deletions(-) diff --git a/components/Modal/ProfilePopup.vue b/components/Modal/ProfilePopup.vue index b99a9ea..3707178 100644 --- a/components/Modal/ProfilePopup.vue +++ b/components/Modal/ProfilePopup.vue @@ -224,14 +224,8 @@ function buttonEditProfile() { overflow-y: auto; overflow-x: hidden; - scrollbar-width: none; } -#about-me-text::-webkit-scrollbar { - display: none; -} - - #profile-footer { margin-left: 1em; margin-right: 1em; -- 2.47.3 From 8d625e21e4ee9b619cb9409bdcef5c17c0341e11 Mon Sep 17 00:00:00 2001 From: Temmie Date: Mon, 11 Aug 2025 01:26:52 +0200 Subject: [PATCH 2/2] fix: missing background on avatar --- components/Modal/ProfilePopup.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/components/Modal/ProfilePopup.vue b/components/Modal/ProfilePopup.vue index 3707178..76a58aa 100644 --- a/components/Modal/ProfilePopup.vue +++ b/components/Modal/ProfilePopup.vue @@ -150,12 +150,13 @@ function buttonEditProfile() { position: absolute; left: 2em; top: 2.5em; - + z-index: 1; - + width: 6em; height: 6em; - + + background-color: var(--accent-color); border: .15em solid var(--accent-color); } @@ -214,7 +215,7 @@ function buttonEditProfile() { align-self: center; - width: 100%; + width: fit-content; font-size: .8em; font-weight: lighter; -- 2.47.3