From d08848fff3a2e411531a878fcba393e8b6130381 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 19 Dec 2022 17:02:01 +0800 Subject: [PATCH] Fix some profile notes don't have

--- src/components/account.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/account.css b/src/components/account.css index ca155333..443ac252 100644 --- a/src/components/account.css +++ b/src/components/account.css @@ -12,6 +12,10 @@ font-size: 95%; line-height: 1.5; } +#account-container .note:not(:has(p)) { + /* Some notes don't have

tags, so we need to add some padding */ + padding: 1em 0; +} #account-container .stats { display: flex; @@ -52,6 +56,9 @@ color: var(--text-insignificant-color); text-transform: uppercase; } +#account-container .profile-field b .icon { + color: var(--green-color); +} #account-container .profile-field p { margin: 0; }