Update Home.py
Browse files
Home.py
CHANGED
|
@@ -67,7 +67,7 @@ if text_search:
|
|
| 67 |
st.caption(f"We found **{key_df_j.shape[0]}** article(s) available for you.")
|
| 68 |
|
| 69 |
for _, row in key_df_j.reset_index().iterrows():
|
| 70 |
-
with st.container():
|
| 71 |
col1, col2 = st.columns([6,4])
|
| 72 |
col1.markdown(f"**{row['Title'].strip()}**")
|
| 73 |
col2.caption(f"**{row['Journal'].strip()}**")
|
|
@@ -77,4 +77,4 @@ if text_search:
|
|
| 77 |
|
| 78 |
popover = st.popover("Abstract", icon="🚨", help="Click to Read Abstract")
|
| 79 |
popover.write(row['Abstract (en)'].strip() if row['Abstract (en)'] else "No abstract available.")
|
| 80 |
-
|
|
|
|
| 67 |
st.caption(f"We found **{key_df_j.shape[0]}** article(s) available for you.")
|
| 68 |
|
| 69 |
for _, row in key_df_j.reset_index().iterrows():
|
| 70 |
+
with st.container(border=True):
|
| 71 |
col1, col2 = st.columns([6,4])
|
| 72 |
col1.markdown(f"**{row['Title'].strip()}**")
|
| 73 |
col2.caption(f"**{row['Journal'].strip()}**")
|
|
|
|
| 77 |
|
| 78 |
popover = st.popover("Abstract", icon="🚨", help="Click to Read Abstract")
|
| 79 |
popover.write(row['Abstract (en)'].strip() if row['Abstract (en)'] else "No abstract available.")
|
| 80 |
+
|