From 33ad21c4f2fd0ae8f0e365239ea0fb22e2593f23 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 17 Feb 2023 00:35:17 -0300 Subject: [PATCH] Make the profile pictures a bit larger --- modules/html_generator.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/html_generator.py b/modules/html_generator.py index 669e525d..df92f2fd 100644 --- a/modules/html_generator.py +++ b/modules/html_generator.py @@ -193,7 +193,7 @@ def generate_chat_html(history, name1, name2, character): .message { display: grid; - grid-template-columns: 50px 1fr; + grid-template-columns: 60px 1fr; padding-bottom: 22px; font-size: 15px; font-family: helvetica; @@ -201,15 +201,15 @@ def generate_chat_html(history, name1, name2, character): } .circle-you { - width: 45px; - height: 45px; + width: 50px; + height: 50px; background-color: rgb(244, 78, 59); border-radius: 50%; } .circle-bot { - width: 45px; - height: 45px; + width: 50px; + height: 50px; background-color: rgb(59, 78, 244); border-radius: 50%; }