awacke1 commited on
Commit
7d04855
·
1 Parent(s): bc5afa8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1,10 +1,10 @@
1
  import streamlit as st
2
  import time
3
-
4
- def display_flashcard(main_point, subpoints):
5
- # Set the page configuration for a wide view
6
- st.set_page_config(layout="wide")
7
 
 
 
8
  # Use large fonts to display the flashcards
9
  st.markdown(f"<h1 style='text-align: center;'>{main_point}</h1>", unsafe_allow_html=True)
10
  for subpoint in subpoints:
 
1
  import streamlit as st
2
  import time
3
+ # Set the page configuration for a wide view
4
+ st.set_page_config(layout="wide")
 
 
5
 
6
+ def display_flashcard(main_point, subpoints):
7
+
8
  # Use large fonts to display the flashcards
9
  st.markdown(f"<h1 style='text-align: center;'>{main_point}</h1>", unsafe_allow_html=True)
10
  for subpoint in subpoints: