Update app.py
Browse files
app.py
CHANGED
@@ -51,7 +51,7 @@ knowledge_base_text = """
|
|
51 |
"""
|
52 |
custom_css = """
|
53 |
body {
|
54 |
-
background-color: #0e2b63;
|
55 |
}
|
56 |
"""
|
57 |
|
@@ -61,8 +61,9 @@ iface = gr.Interface(
|
|
61 |
outputs="text",
|
62 |
title="British American Tobacco Bangladesh",
|
63 |
description="- powered by IDT",
|
64 |
-
theme="
|
65 |
css=custom_css # Apply the custom CSS
|
66 |
)
|
67 |
|
|
|
68 |
iface.launch()
|
|
|
51 |
"""
|
52 |
custom_css = """
|
53 |
body {
|
54 |
+
background-color: #0e2b63 !important;
|
55 |
}
|
56 |
"""
|
57 |
|
|
|
61 |
outputs="text",
|
62 |
title="British American Tobacco Bangladesh",
|
63 |
description="- powered by IDT",
|
64 |
+
theme="compact", # You can adjust the theme as needed
|
65 |
css=custom_css # Apply the custom CSS
|
66 |
)
|
67 |
|
68 |
+
|
69 |
iface.launch()
|