Update app.py
Browse files
app.py
CHANGED
|
@@ -205,14 +205,16 @@ with gr.Blocks(css="""
|
|
| 205 |
background-color: #25D366 !important;
|
| 206 |
color: white !important;
|
| 207 |
border: none;
|
| 208 |
-
border-radius:
|
| 209 |
font-size: 18px;
|
| 210 |
-
padding: 6px
|
| 211 |
-
height:
|
| 212 |
-
width:
|
|
|
|
| 213 |
margin-left: 6px;
|
| 214 |
cursor: pointer;
|
| 215 |
}
|
|
|
|
| 216 |
#chatbox .avatar-container {
|
| 217 |
width: 48px !important;
|
| 218 |
height: 48px !important;
|
|
@@ -280,7 +282,8 @@ label.svelte-1to105q {
|
|
| 280 |
container=True,
|
| 281 |
scale=10
|
| 282 |
)
|
| 283 |
-
send_btn = gr.Button(value="➤", elem_classes="send-btn")
|
|
|
|
| 284 |
|
| 285 |
state = gr.State([])
|
| 286 |
step = gr.State(0)
|
|
|
|
| 205 |
background-color: #25D366 !important;
|
| 206 |
color: white !important;
|
| 207 |
border: none;
|
| 208 |
+
border-radius: 12px;
|
| 209 |
font-size: 18px;
|
| 210 |
+
padding: 6px 12px;
|
| 211 |
+
height: 42px;
|
| 212 |
+
min-width: 42px;
|
| 213 |
+
width: auto;
|
| 214 |
margin-left: 6px;
|
| 215 |
cursor: pointer;
|
| 216 |
}
|
| 217 |
+
|
| 218 |
#chatbox .avatar-container {
|
| 219 |
width: 48px !important;
|
| 220 |
height: 48px !important;
|
|
|
|
| 282 |
container=True,
|
| 283 |
scale=10
|
| 284 |
)
|
| 285 |
+
send_btn = gr.Button(value="➤", elem_classes="send-btn", scale=1)
|
| 286 |
+
|
| 287 |
|
| 288 |
state = gr.State([])
|
| 289 |
step = gr.State(0)
|