Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -677,7 +677,28 @@ def side():
|
|
| 677 |
""", unsafe_allow_html=True
|
| 678 |
)
|
| 679 |
st.markdown("For detailed descriptions, visit [Academy](https://www.trustifier.ai/account/academy)")
|
| 680 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 681 |
with st.container():
|
| 682 |
st.subheader("Saved Documents")
|
| 683 |
st.write("Save documents like your brand tonality, key phrases, or segments here.")
|
|
|
|
| 677 |
""", unsafe_allow_html=True
|
| 678 |
)
|
| 679 |
st.markdown("For detailed descriptions, visit [Academy](https://www.trustifier.ai/account/academy)")
|
| 680 |
+
|
| 681 |
+
|
| 682 |
+
|
| 683 |
+
trust_buckets = ["S", "D", "R", "B", "V", "C"]
|
| 684 |
+
bucket_labels = ["Stability", "Development", "Relationship", "Benefit", "Vision", "Competence"]
|
| 685 |
+
|
| 686 |
+
# Sidebar Header
|
| 687 |
+
st.sidebar.header("TrustVault®")
|
| 688 |
+
|
| 689 |
+
# CSS for Scrollable Container
|
| 690 |
+
st.markdown("""
|
| 691 |
+
<style>
|
| 692 |
+
.scrollable-container {
|
| 693 |
+
max-height: 300px;
|
| 694 |
+
overflow-y: auto;
|
| 695 |
+
border: 1px solid gray;
|
| 696 |
+
padding: 10px;
|
| 697 |
+
border-radius: 5px;
|
| 698 |
+
background-color: #f9f9f9;
|
| 699 |
+
}
|
| 700 |
+
</style>
|
| 701 |
+
""", unsafe_allow_html=True)
|
| 702 |
with st.container():
|
| 703 |
st.subheader("Saved Documents")
|
| 704 |
st.write("Save documents like your brand tonality, key phrases, or segments here.")
|