georad commited on
Commit
a322261
·
verified ·
1 Parent(s): 8187d27

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -6,10 +6,12 @@ st.sidebar.title("SBS V2.0 mapper")
6
  st.sidebar.subheader("(work in progress)")
7
  st.sidebar.text("Demo by JA-RAD")
8
 
 
 
9
  st.markdown(
10
  """
11
  <style>
12
- div[data-testid="stAppViewContainer"] > div:first-child > div[data-testid="stHeadingWithActionElements"] {
13
  position: fixed;
14
  top: 0;
15
  left: 0;
@@ -28,7 +30,7 @@ st.title("SBS Mapper") # Keep your title here
28
 
29
  # Your Streamlit app content below this line
30
  st.markdown("## Welcome to the SBS Mapper App!")
31
- st.write("Trying again to make the header sticky on Hugging Face...")
32
  for i in range(50):
33
  st.write(f"More content: {i}")
34
 
 
6
  st.sidebar.subheader("(work in progress)")
7
  st.sidebar.text("Demo by JA-RAD")
8
 
9
+ import streamlit as st
10
+
11
  st.markdown(
12
  """
13
  <style>
14
+ div[data-testid="stAppViewContainer"] > div:first-child > div.stMarkdown {
15
  position: fixed;
16
  top: 0;
17
  left: 0;
 
30
 
31
  # Your Streamlit app content below this line
32
  st.markdown("## Welcome to the SBS Mapper App!")
33
+ st.write("Let's see if targeting the stMarkdown container works...")
34
  for i in range(50):
35
  st.write(f"More content: {i}")
36