Update app.py
Browse files
app.py
CHANGED
@@ -147,11 +147,8 @@ def main():
|
|
147 |
|
148 |
# Gameplay screen
|
149 |
elif st.session_state.game_state == "gameplay":
|
150 |
-
|
151 |
-
|
152 |
-
st.image("https://via.placeholder.com/200?text=Question", width=150)
|
153 |
-
with col2:
|
154 |
-
st.markdown(f'<div class="question-box">Question {st.session_state.current_q + 1}/10:<br><br>'
|
155 |
f'<strong>{st.session_state.questions[st.session_state.current_q]}</strong></div>',
|
156 |
unsafe_allow_html=True)
|
157 |
|
|
|
147 |
|
148 |
# Gameplay screen
|
149 |
elif st.session_state.game_state == "gameplay":
|
150 |
+
|
151 |
+
st.markdown(f'<div class="question-box">Question {st.session_state.current_q + 1}/10:<br><br>'
|
|
|
|
|
|
|
152 |
f'<strong>{st.session_state.questions[st.session_state.current_q]}</strong></div>',
|
153 |
unsafe_allow_html=True)
|
154 |
|