Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -83,19 +83,19 @@ with gr.Blocks() as app:
|
|
83 |
# Custom CSS to adjust field sizes
|
84 |
app.css = """
|
85 |
#name_field, #father_name_field {
|
86 |
-
max-width:
|
87 |
}
|
88 |
|
89 |
#age_field {
|
90 |
-
max-width:
|
91 |
}
|
92 |
|
93 |
#phone_field {
|
94 |
-
max-width:
|
95 |
}
|
96 |
|
97 |
#pincode_field {
|
98 |
-
max-width:
|
99 |
}
|
100 |
"""
|
101 |
|
|
|
83 |
# Custom CSS to adjust field sizes
|
84 |
app.css = """
|
85 |
#name_field, #father_name_field {
|
86 |
+
max-width: 750px;
|
87 |
}
|
88 |
|
89 |
#age_field {
|
90 |
+
max-width: 150px;
|
91 |
}
|
92 |
|
93 |
#phone_field {
|
94 |
+
max-width: 850px;
|
95 |
}
|
96 |
|
97 |
#pincode_field {
|
98 |
+
max-width: 4000px;
|
99 |
}
|
100 |
"""
|
101 |
|