andreska commited on
Commit
2e57e8b
·
verified ·
1 Parent(s): 7ed9b7b

Test setting a specific background color

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py CHANGED
@@ -7,6 +7,16 @@ api_key = os.getenv("HF_API_KEY")
7
  client = InferenceClient(api_key=api_key)
8
  dataset = load_dataset("andreska/adregadocs", split="test")
9
 
 
 
 
 
 
 
 
 
 
 
10
  def read_dataset(dataset):
11
  text = []
12
  for item in dataset:
 
7
  client = InferenceClient(api_key=api_key)
8
  dataset = load_dataset("andreska/adregadocs", split="test")
9
 
10
+ st.markdown(
11
+ """
12
+ <style>
13
+ .main {
14
+ background-color: yellow;
15
+ }
16
+ </style>
17
+ """,
18
+ unsafe_allow_html=True )
19
+
20
  def read_dataset(dataset):
21
  text = []
22
  for item in dataset: