jeremierostan commited on
Commit
f23fbcc
·
verified ·
1 Parent(s): c40fc8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +33 -30
app.py CHANGED
@@ -114,48 +114,51 @@ isp_theme = gr.themes.Default().set(
114
 
115
  # Custom CSS for logo positioning and disclaimer footer
116
  custom_css = """
117
- #logo-img {
118
- position: absolute;
119
- top: 20px;
120
- right: 20px;
121
- width: 100px;
122
  height: auto;
123
  }
124
- #disclaimer-footer {
125
- width: 100%;
126
- background-color: #B8D8FF;
127
- color: #003366;
128
- text-align: center;
129
- padding: 10px 0;
130
- font-size: 14px;
131
- border-top: 1px solid #0066CC;
132
  margin-top: 20px;
133
  }
134
- .container {
135
- max-width: 800px;
136
- margin: 0 auto;
137
  padding: 20px;
138
  }
139
- .title {
140
- color: #003366;
141
  margin-bottom: 10px;
142
  }
143
- .chatbot {
144
- border: 1px solid #0066CC;
145
- border-radius: 5px;
146
- padding: 10px;
147
  margin-bottom: 15px;
148
  }
149
- .button-row {
150
- display: flex;
151
- gap: 10px;
152
  margin-bottom: 15px;
153
  }
154
- .examples-section {
155
- background-color: #B8D8FF;
156
- padding: 10px;
157
- border-radius: 5px;
158
- margin-top: 15px;
 
 
 
159
  }
160
  """
161
 
 
114
 
115
  # Custom CSS for logo positioning and disclaimer footer
116
  custom_css = """
117
+ #logo-img {
118
+ position: absolute;
119
+ top: 20px;
120
+ right: 20px;
121
+ width: 200px;
122
  height: auto;
123
  }
124
+ #disclaimer-footer {
125
+ width: 100%;
126
+ background-color: #B8D8FF;
127
+ color: #003366;
128
+ text-align: center;
129
+ padding: 10px 0;
130
+ font-size: 14px;
131
+ border-top: 1px solid #0066CC;
132
  margin-top: 20px;
133
  }
134
+ .container {
135
+ max-width: 800px;
136
+ margin: 0 auto;
137
  padding: 20px;
138
  }
139
+ .title {
140
+ color: #003366;
141
  margin-bottom: 10px;
142
  }
143
+ .chatbot {
144
+ border: 1px solid #0066CC;
145
+ border-radius: 5px;
146
+ padding: 10px;
147
  margin-bottom: 15px;
148
  }
149
+ .button-row {
150
+ display: flex;
151
+ gap: 10px;
152
  margin-bottom: 15px;
153
  }
154
+
155
+ /* Chat bubble fix */
156
+ .chatbot .message {
157
+ border-left: none !important;
158
+ padding-left: 0 !important;
159
+ }
160
+ .chatbot .message::before {
161
+ display: none !important;
162
  }
163
  """
164