Spaces:
Running
Running
Update demo.py
Browse files
demo.py
CHANGED
@@ -47,8 +47,8 @@ css = """
|
|
47 |
display: flex;
|
48 |
justify-content: center;
|
49 |
width: 100%;
|
50 |
-
Height: 100%;
|
51 |
}
|
|
|
52 |
/* Adjusting layout for Input Text and Inference Result */
|
53 |
.input-row {
|
54 |
display: flex;
|
@@ -67,7 +67,12 @@ css = """
|
|
67 |
/* Set button widths to match the Select Model width */
|
68 |
.button {
|
69 |
width: 250px; /* Same as the select box width */
|
70 |
-
|
|
|
|
|
|
|
|
|
|
|
71 |
}
|
72 |
"""
|
73 |
|
|
|
47 |
display: flex;
|
48 |
justify-content: center;
|
49 |
width: 100%;
|
|
|
50 |
}
|
51 |
+
|
52 |
/* Adjusting layout for Input Text and Inference Result */
|
53 |
.input-row {
|
54 |
display: flex;
|
|
|
67 |
/* Set button widths to match the Select Model width */
|
68 |
.button {
|
69 |
width: 250px; /* Same as the select box width */
|
70 |
+
height: 100px; /* Button height */
|
71 |
+
}
|
72 |
+
|
73 |
+
/* Set height for the Select Model dropdown */
|
74 |
+
.gradio-dropdown select {
|
75 |
+
height: 100px; /* Set height to 100px */
|
76 |
}
|
77 |
"""
|
78 |
|