Vlad Bastina commited on
Commit
c378e6c
·
1 Parent(s): 214f882

style changes

Browse files
Files changed (2) hide show
  1. app.py +0 -1
  2. style.css +5 -0
app.py CHANGED
@@ -49,7 +49,6 @@ if __name__ == "__main__":
49
 
50
  st.write('''This demo showcases an AI-powered system designed to interpret and answer questions based on Title 21 of the Code of Federal Regulations, Part 1 (21 CFR 1). These regulations, governed by the U.S. Food and Drug Administration (FDA), cover general enforcement provisions related to food, drugs, and cosmetics. The system enables users to navigate complex regulatory text efficiently, providing accurate, context-aware answers to compliance and procedural queries.''')
51
  # Display logo
52
- st.sidebar.markdown("---") # Add a separator
53
  st.sidebar.write('Click the button bellow to download the sample document')
54
  # Load the chatbot resources AND get the PDF path
55
  chatbot, pdf_file_path_for_download = load_resources()
 
49
 
50
  st.write('''This demo showcases an AI-powered system designed to interpret and answer questions based on Title 21 of the Code of Federal Regulations, Part 1 (21 CFR 1). These regulations, governed by the U.S. Food and Drug Administration (FDA), cover general enforcement provisions related to food, drugs, and cosmetics. The system enables users to navigate complex regulatory text efficiently, providing accurate, context-aware answers to compliance and procedural queries.''')
51
  # Display logo
 
52
  st.sidebar.write('Click the button bellow to download the sample document')
53
  # Load the chatbot resources AND get the PDF path
54
  chatbot, pdf_file_path_for_download = load_resources()
style.css CHANGED
@@ -89,4 +89,9 @@ body {
89
  .st-emotion-cache-t1wise {
90
  padding: 0 54px !important;
91
  }
 
 
 
 
 
92
  }
 
89
  .st-emotion-cache-t1wise {
90
  padding: 0 54px !important;
91
  }
92
+ }
93
+
94
+ [data-testid="stSidebarContent"] {
95
+ border: 1px solid #C0CDF5 !important;
96
+ background: white !important;
97
  }