TejAndrewsACC commited on
Commit
3415b9a
·
verified ·
1 Parent(s): f230207

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -3650,9 +3650,10 @@ css = """
3650
  /* Import Caveat font from Google Fonts */
3651
  @import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
3652
 
3653
- /* Apply Caveat font globally */
3654
  * {
3655
  font-family: 'Caveat', cursive !important;
 
3656
  }
3657
 
3658
  #chat-interface {
@@ -3723,7 +3724,7 @@ body {
3723
  border: 2px solid rgba(0, 102, 255, 0.6);
3724
  border-radius: 10px;
3725
  color: #fff;
3726
- font-size: 16px;
3727
  transition: background-color 0.5s, border 0.5s;
3728
  }
3729
 
 
3650
  /* Import Caveat font from Google Fonts */
3651
  @import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
3652
 
3653
+ /* Apply Caveat font globally and increase font size to 125% */
3654
  * {
3655
  font-family: 'Caveat', cursive !important;
3656
+ font-size: 125%; /* 125% of the default font size */
3657
  }
3658
 
3659
  #chat-interface {
 
3724
  border: 2px solid rgba(0, 102, 255, 0.6);
3725
  border-radius: 10px;
3726
  color: #fff;
3727
+ font-size: 18px;
3728
  transition: background-color 0.5s, border 0.5s;
3729
  }
3730