iisadia commited on
Commit
2707612
·
verified ·
1 Parent(s): bad3bd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -147,11 +147,8 @@ def main():
147
 
148
  # Gameplay screen
149
  elif st.session_state.game_state == "gameplay":
150
- col1, col2 = st.columns([1, 3])
151
- with col1:
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