From 61aed974390781a68a07e1ba8c12d8e69e719822 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Sun, 12 Feb 2023 17:38:54 -0300 Subject: [PATCH] Slightly increase a margin --- modules/html_generator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/html_generator.py b/modules/html_generator.py index 1bd34466..cc50e24d 100644 --- a/modules/html_generator.py +++ b/modules/html_generator.py @@ -9,7 +9,7 @@ import re from pathlib import Path def generate_basic_html(s): - s = '\n'.join([f'

{line}

' for line in s.split('\n')]) + s = '\n'.join([f'

{line}

' for line in s.split('\n')]) s = f'
{s}
' return s @@ -177,7 +177,7 @@ def generate_chat_html(history, name1, name2, character): .message { display: grid; grid-template-columns: 50px 1fr; - padding-bottom: 20px; + padding-bottom: 22px; font-size: 15px; font-family: helvetica; }