Uvini commited on
Commit
4091915
·
1 Parent(s): 96e968b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -22,7 +22,8 @@ file = st.file_uploader("", type=["csv"])
22
  if file is not None:
23
  # Read the CSV file into a Pandas DataFrame
24
  df = pd.read_csv(file)
25
- st.header(f"<span style='font-family: Verdana; font-size: 30px; color: #52565E;'>{len(df)} reviews to analyse!</span>", unsafe_allow_html=True)
 
26
  # Write the total number of records
27
  st.markdown(
28
  f'<div style="background-color: #4AA6DD; color: #ffffff; padding: 6px; font-size: 20px; font-family: Verdana; font-weight: bold; text-align: center; border-radius: 1rem;margin-top: 10px"> Distribution of Reviews </div>',
 
22
  if file is not None:
23
  # Read the CSV file into a Pandas DataFrame
24
  df = pd.read_csv(file)
25
+ st.markdown(f"<h3 style='color: #52565E; font-family: Verdana; font-size: 30px;'>{len(df)} reviews to analyse!</h3>", unsafe_allow_html=True)
26
+
27
  # Write the total number of records
28
  st.markdown(
29
  f'<div style="background-color: #4AA6DD; color: #ffffff; padding: 6px; font-size: 20px; font-family: Verdana; font-weight: bold; text-align: center; border-radius: 1rem;margin-top: 10px"> Distribution of Reviews </div>',