Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -37,7 +37,12 @@ with gr.Blocks(
|
|
37 |
fill_height=True
|
38 |
) as app:
|
39 |
gr.HTML("<div style='text-align:center;overflow:hidden;'><h2>📓 PDF Summarizer 📓</h2></div>")
|
40 |
-
with gr.Sidebar(
|
|
|
|
|
|
|
|
|
|
|
41 |
gr.HTML("<div style='text-align:center;overflow:hidden;'><h3>📓 PDF Summarizer 📓</h3></div>")
|
42 |
gr.HTML("<br>")
|
43 |
# load sweet alert module from cdn
|
|
|
37 |
fill_height=True
|
38 |
) as app:
|
39 |
gr.HTML("<div style='text-align:center;overflow:hidden;'><h2>📓 PDF Summarizer 📓</h2></div>")
|
40 |
+
with gr.Sidebar(elem_id = "sidebar"):
|
41 |
+
gr.HTML("""
|
42 |
+
<style>
|
43 |
+
#sidebar {background-color:black;}
|
44 |
+
</style>
|
45 |
+
""")
|
46 |
gr.HTML("<div style='text-align:center;overflow:hidden;'><h3>📓 PDF Summarizer 📓</h3></div>")
|
47 |
gr.HTML("<br>")
|
48 |
# load sweet alert module from cdn
|