Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -78,20 +78,30 @@ def infer(prompt, negative_prompt, seed, randomize_seed, width, height, guidance
|
|
78 |
css = """
|
79 |
#col-container {
|
80 |
margin: 0 auto;
|
81 |
-
max-width:
|
82 |
-
}
|
83 |
-
#run-button {
|
84 |
-
width: 100%;
|
85 |
}
|
|
|
86 |
#left-column {
|
87 |
width: 50%;
|
88 |
display: inline-block;
|
89 |
padding-right: 20px;
|
|
|
90 |
}
|
|
|
91 |
#right-column {
|
92 |
width: 50%;
|
93 |
display: inline-block;
|
94 |
vertical-align: top;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
"""
|
97 |
|
|
|
78 |
css = """
|
79 |
#col-container {
|
80 |
margin: 0 auto;
|
81 |
+
max-width: 1280px;
|
|
|
|
|
|
|
82 |
}
|
83 |
+
|
84 |
#left-column {
|
85 |
width: 50%;
|
86 |
display: inline-block;
|
87 |
padding-right: 20px;
|
88 |
+
padding-left: 20px;
|
89 |
}
|
90 |
+
|
91 |
#right-column {
|
92 |
width: 50%;
|
93 |
display: inline-block;
|
94 |
vertical-align: top;
|
95 |
+
padding-left: 20px;
|
96 |
+
}
|
97 |
+
|
98 |
+
#left-column > * {
|
99 |
+
margin-bottom: 20px;
|
100 |
+
}
|
101 |
+
|
102 |
+
#run-button {
|
103 |
+
width: 100%;
|
104 |
+
margin-top: 10px;
|
105 |
}
|
106 |
"""
|
107 |
|