Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,9 +37,13 @@ css="""
|
|
| 37 |
.flowchart-link{
|
| 38 |
stroke:red;
|
| 39 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
"""
|
| 41 |
|
| 42 |
-
with gr.Blocks() as app:
|
| 43 |
inp_text=gr.Textbox(value=mermaid_code)
|
| 44 |
btn=gr.Button()
|
| 45 |
out_html=gr.HTML("""""")
|
|
|
|
| 37 |
.flowchart-link{
|
| 38 |
stroke:red;
|
| 39 |
}
|
| 40 |
+
.marker {
|
| 41 |
+
fill: #ed0000;
|
| 42 |
+
stroke: #ff0101;
|
| 43 |
+
}
|
| 44 |
"""
|
| 45 |
|
| 46 |
+
with gr.Blocks(css=css) as app:
|
| 47 |
inp_text=gr.Textbox(value=mermaid_code)
|
| 48 |
btn=gr.Button()
|
| 49 |
out_html=gr.HTML("""""")
|