Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -286,7 +286,14 @@ button {
|
|
286 |
</script>
|
287 |
"""
|
288 |
def app():
|
289 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
# Login Page
|
291 |
with gr.Column(visible=True) as login_section:
|
292 |
gr.Markdown("# Login Page")
|
|
|
286 |
</script>
|
287 |
"""
|
288 |
def app():
|
289 |
+
with gr.Blocks(css="""
|
290 |
+
.gradio-column {
|
291 |
+
min-height: 100vh; /* Ensure each section takes up at least the full viewport height */
|
292 |
+
display: flex;
|
293 |
+
flex-direction: column;
|
294 |
+
justify-content: flex-start; /* Align content to the top */
|
295 |
+
}
|
296 |
+
""") as demo:
|
297 |
# Login Page
|
298 |
with gr.Column(visible=True) as login_section:
|
299 |
gr.Markdown("# Login Page")
|