Update app.py
Browse files
app.py
CHANGED
@@ -2,9 +2,7 @@ import streamlit as st
|
|
2 |
|
3 |
# Looking at the UCSF example, they use a custom component approach with specific CSS
|
4 |
# Let's implement a similar solution
|
5 |
-
|
6 |
-
# Custom CSS based on the UCSF implementation
|
7 |
-
st.markdown("""
|
8 |
<style>
|
9 |
/* CSS similar to UCSF implementation */
|
10 |
div.block-container {
|
|
|
2 |
|
3 |
# Looking at the UCSF example, they use a custom component approach with specific CSS
|
4 |
# Let's implement a similar solution
|
5 |
+
custom_css = f"""
|
|
|
|
|
6 |
<style>
|
7 |
/* CSS similar to UCSF implementation */
|
8 |
div.block-container {
|