Spaces:
Runtime error
Runtime error
Commit
·
7abbaee
1
Parent(s):
6402d6f
himself
Browse files
app.py
CHANGED
@@ -93,7 +93,9 @@ def flip_text(x):
|
|
93 |
|
94 |
def flip_image(x):
|
95 |
return np.fliplr(x)
|
96 |
-
|
|
|
|
|
97 |
css = "#component-2 {height: 350px}"
|
98 |
|
99 |
with gr.Blocks(title="Sophia, Torah Codes",css=css) as app:
|
|
|
93 |
|
94 |
def flip_image(x):
|
95 |
return np.fliplr(x)
|
96 |
+
js = """
|
97 |
+
document.getElementById('component-2').style.height="350px"
|
98 |
+
"""
|
99 |
css = "#component-2 {height: 350px}"
|
100 |
|
101 |
with gr.Blocks(title="Sophia, Torah Codes",css=css) as app:
|