From b5bb2c6ca02a247e1c3b420fc326f36c4bea6186 Mon Sep 17 00:00:00 2001 From: Maltion <89048323+ismaltion@users.noreply.github.com> Date: Thu, 21 Aug 2025 22:41:52 +0200 Subject: [PATCH] Added rounded corners to "What's happening?" user icons. There are many places in the website where user icons have a border-radius property of 3 pixels, however the What's happening? section has fully squared borders that do not match the rest. It can be noticed with high zoom. Padding was replaced by margin because it prevented the border radius from working correctly and was redundant. Replacing it with margin does not affect anything and is in fact cleaner. Works for all devices and browsers. --- src/views/splash/splash.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/splash/splash.scss b/src/views/splash/splash.scss index 89a54e82799..5cd005b8e0a 100644 --- a/src/views/splash/splash.scss +++ b/src/views/splash/splash.scss @@ -114,10 +114,11 @@ } .activity-img { - padding-right: .825rem; + margin-right: .825rem; width: 2rem; height: 2rem; vertical-align: middle; + border-radius: 3px; } .social-message-content {