Spaces:
Runtime error
Runtime error
Update demo.py
Browse files
demo.py
CHANGED
@@ -43,6 +43,20 @@ css = """
|
|
43 |
margin: 0 5px;
|
44 |
color: black;
|
45 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
"""
|
47 |
|
48 |
# Gradio App
|
|
|
43 |
margin: 0 5px;
|
44 |
color: black;
|
45 |
}
|
46 |
+
.gradio-container {
|
47 |
+
display: flex;
|
48 |
+
flex-direction: column;
|
49 |
+
align-items: center;
|
50 |
+
}
|
51 |
+
.row {
|
52 |
+
display: flex;
|
53 |
+
justify-content: center;
|
54 |
+
width: 100%;
|
55 |
+
}
|
56 |
+
.gradio-row input, .gradio-row select, .gradio-row button {
|
57 |
+
width: 250px; /* Set all elements to the same width */
|
58 |
+
margin: 5px;
|
59 |
+
}
|
60 |
"""
|
61 |
|
62 |
# Gradio App
|