Spaces:
Runtime error
Runtime error
Commit
·
48d020e
1
Parent(s):
61f86b3
Update app.py
Browse files
app.py
CHANGED
@@ -22,12 +22,9 @@ def continueStory(blank, messageHistory):
|
|
22 |
return story, messageHistory
|
23 |
|
24 |
|
25 |
-
|
26 |
-
|
27 |
with gr.Blocks(css='''
|
28 |
.gradio-container {
|
29 |
display: flex;
|
30 |
-
width: 50%;
|
31 |
flex-direction: column;
|
32 |
justify-content: center;
|
33 |
align-items: center;
|
@@ -38,6 +35,7 @@ with gr.Blocks(css='''
|
|
38 |
h1 {
|
39 |
font-size: 3rem;
|
40 |
font-weight: 700;
|
|
|
41 |
margin-bottom: 1rem;
|
42 |
color: white;
|
43 |
}
|
@@ -49,7 +47,7 @@ with gr.Blocks(css='''
|
|
49 |
}
|
50 |
|
51 |
.gradio-row {
|
52 |
-
width:
|
53 |
margin-bottom: 1.5rem;
|
54 |
}
|
55 |
|
@@ -76,6 +74,7 @@ with gr.Blocks(css='''
|
|
76 |
border-radius: 5px;
|
77 |
cursor: pointer;
|
78 |
transition: all 0.2s ease-in-out;
|
|
|
79 |
}
|
80 |
|
81 |
.gradio-button:hover {
|
|
|
22 |
return story, messageHistory
|
23 |
|
24 |
|
|
|
|
|
25 |
with gr.Blocks(css='''
|
26 |
.gradio-container {
|
27 |
display: flex;
|
|
|
28 |
flex-direction: column;
|
29 |
justify-content: center;
|
30 |
align-items: center;
|
|
|
35 |
h1 {
|
36 |
font-size: 3rem;
|
37 |
font-weight: 700;
|
38 |
+
margin-top: 1rem;
|
39 |
margin-bottom: 1rem;
|
40 |
color: white;
|
41 |
}
|
|
|
47 |
}
|
48 |
|
49 |
.gradio-row {
|
50 |
+
width: 50%;
|
51 |
margin-bottom: 1.5rem;
|
52 |
}
|
53 |
|
|
|
74 |
border-radius: 5px;
|
75 |
cursor: pointer;
|
76 |
transition: all 0.2s ease-in-out;
|
77 |
+
width: 50%;
|
78 |
}
|
79 |
|
80 |
.gradio-button:hover {
|