Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -27,8 +27,6 @@ def arithmetic(num1, num2, operation):
|
|
27 |
return res[0]
|
28 |
|
29 |
custom_css = """
|
30 |
-
/* Ultra minimal dark theme with only essential styling */
|
31 |
-
|
32 |
/* Dark background and light text */
|
33 |
body {
|
34 |
background-color: #121212;
|
@@ -50,13 +48,13 @@ custom_css = """
|
|
50 |
|
51 |
/* Ensure result is visible */
|
52 |
#result, .output-class, .gr-number-output {
|
53 |
-
color:
|
54 |
font-size: large;
|
55 |
}
|
56 |
|
57 |
/* Hide footer */
|
58 |
footer {
|
59 |
-
display: none
|
60 |
}
|
61 |
"""
|
62 |
with gr.Blocks(
|
|
|
27 |
return res[0]
|
28 |
|
29 |
custom_css = """
|
|
|
|
|
30 |
/* Dark background and light text */
|
31 |
body {
|
32 |
background-color: #121212;
|
|
|
48 |
|
49 |
/* Ensure result is visible */
|
50 |
#result, .output-class, .gr-number-output {
|
51 |
+
color: white; !important
|
52 |
font-size: large;
|
53 |
}
|
54 |
|
55 |
/* Hide footer */
|
56 |
footer {
|
57 |
+
display: none;!important;
|
58 |
}
|
59 |
"""
|
60 |
with gr.Blocks(
|