Jan Mühlnikel
commited on
Commit
·
b88f1e8
1
Parent(s):
be9ff30
change size of st tabs
Browse files
__pycache__/similarity_page.cpython-310.pyc
CHANGED
Binary files a/__pycache__/similarity_page.cpython-310.pyc and b/__pycache__/similarity_page.cpython-310.pyc differ
|
|
functions/__pycache__/semantic_search.cpython-310.pyc
CHANGED
Binary files a/functions/__pycache__/semantic_search.cpython-310.pyc and b/functions/__pycache__/semantic_search.cpython-310.pyc differ
|
|
modules/__pycache__/navbar.cpython-310.pyc
CHANGED
Binary files a/modules/__pycache__/navbar.cpython-310.pyc and b/modules/__pycache__/navbar.cpython-310.pyc differ
|
|
modules/navbar.py
CHANGED
@@ -18,6 +18,15 @@ def show_navbar():
|
|
18 |
#st.markdown("<h1 style='color: red;'>THIS APP IS WORK IN PROGRESS ...</h1>", unsafe_allow_html=True)
|
19 |
|
20 |
#st.title("Development Bank Synergy Mapper")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
tab1, tab2 = st.tabs([
|
22 |
"🔍 Multi-Project Matching",
|
23 |
"🎯 Single-Project Matching"
|
|
|
18 |
#st.markdown("<h1 style='color: red;'>THIS APP IS WORK IN PROGRESS ...</h1>", unsafe_allow_html=True)
|
19 |
|
20 |
#st.title("Development Bank Synergy Mapper")
|
21 |
+
css = '''
|
22 |
+
<style>
|
23 |
+
.stTabs [data-baseweb="tab-list"] button [data-testid="stMarkdownContainer"] p {
|
24 |
+
font-size:2rem;
|
25 |
+
}
|
26 |
+
</style>
|
27 |
+
'''
|
28 |
+
|
29 |
+
st.markdown(css, unsafe_allow_html=True)
|
30 |
tab1, tab2 = st.tabs([
|
31 |
"🔍 Multi-Project Matching",
|
32 |
"🎯 Single-Project Matching"
|
similarity_page.py
CHANGED
@@ -145,6 +145,8 @@ def show_multi_matching_page():
|
|
145 |
Federal Foreign Office (AA), offering a comprehensive platform for enhancing collaboration and maximizing the impact of development efforts.
|
146 |
""")
|
147 |
|
|
|
|
|
148 |
col1, col2, col3 = st.columns([10, 1, 10])
|
149 |
with col1:
|
150 |
st.subheader("Sector Filter (required)")
|
@@ -259,7 +261,7 @@ def show_multi_matching_page():
|
|
259 |
del p1_df, p2_df
|
260 |
else:
|
261 |
st.write("-----")
|
262 |
-
col1, col2, col3 = st.columns([1
|
263 |
with col2:
|
264 |
st.write(" ")
|
265 |
st.markdown("There are no results for the applied filter. Try another filter!")
|
|
|
145 |
Federal Foreign Office (AA), offering a comprehensive platform for enhancing collaboration and maximizing the impact of development efforts.
|
146 |
""")
|
147 |
|
148 |
+
st.write("----------------------")
|
149 |
+
|
150 |
col1, col2, col3 = st.columns([10, 1, 10])
|
151 |
with col1:
|
152 |
st.subheader("Sector Filter (required)")
|
|
|
261 |
del p1_df, p2_df
|
262 |
else:
|
263 |
st.write("-----")
|
264 |
+
col1, col2, col3 = st.columns([1, 1, 1])
|
265 |
with col2:
|
266 |
st.write(" ")
|
267 |
st.markdown("There are no results for the applied filter. Try another filter!")
|