f64 commited on
Commit
cd92f14
·
1 Parent(s): 764d922
Files changed (2) hide show
  1. app.py +10 -1
  2. requirements.txt +2 -2
app.py CHANGED
@@ -1,5 +1,14 @@
1
- import streamlit as st
2
  import pandas as pd
 
 
 
 
 
 
 
 
 
 
3
 
4
  df = pd.DataFrame(
5
  [
 
 
1
  import pandas as pd
2
+ import streamlit as st
3
+
4
+
5
+ st.markdown("""
6
+ <style>
7
+ header > div {
8
+ background-color: red;
9
+ }
10
+ </style>
11
+ """)
12
 
13
  df = pd.DataFrame(
14
  [
requirements.txt CHANGED
@@ -1,3 +1,3 @@
1
  streamlit
2
- numpy
3
- pandas
 
1
  streamlit
2
+ pandas
3
+ numpy