From 4a32871d7df64d327a5fd2d3d84f4846c4385e1c Mon Sep 17 00:00:00 2001 From: MarekWo Date: Tue, 20 Jan 2026 08:17:50 +0100 Subject: [PATCH] fix: Reduce emoji avatar border and chat margins - Reduce emoji avatar border from 2.5px to 1.5px - Reduce horizontal padding from 0.5rem to 0.25rem Co-Authored-By: Claude Opus 4.5 --- app/static/css/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/static/css/style.css b/app/static/css/style.css index 86b7339..a2bdda2 100644 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -30,8 +30,8 @@ main { /* Messages Container */ .messages-container { background-color: #ffffff; - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; + padding-left: 0.25rem !important; + padding-right: 0.25rem !important; } #messagesList { @@ -81,7 +81,7 @@ main { .message-avatar.emoji { font-size: 1.25rem; background-color: transparent !important; - border: 2.5px solid; + border: 1.5px solid; line-height: 1; padding-bottom: 1px; }