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; }