Browse Source

Minor style change

oobabooga 3 years ago
parent
commit
995bcfcf5e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      modules/html_generator.py

+ 2 - 2
modules/html_generator.py

@@ -26,10 +26,10 @@ def generate_basic_html(s):
         padding:3em;
     }
     .container p {
-        font-size: 14px !important;
+        font-size: 16px !important;
         color: white !important;
-        font-family: Helvetica, Arial, sans-serif !important;
         margin-bottom: 22px;
+        line-height: 1.4 !important;
     }
     """
     s = '\n'.join([f'<p>{line}</p>' for line in s.split('\n')])