diff --git a/assets/css/streamlit_PR.css b/assets/css/streamlit_PR.css index f5caa96..2311b2f 100644 --- a/assets/css/streamlit_PR.css +++ b/assets/css/streamlit_PR.css @@ -2,9 +2,9 @@ footer {visibility: hidden;} -/* Footer CoE */ +/* Footer Global Data */ footer:after { - content:'Made with \1F499 by your CoE team'; + content:'Made with \1F499 by your Global Data team'; visibility: visible; display: block; position: relative; diff --git a/assets/images/logo_global_data.png b/assets/images/logo_global_data.png new file mode 100644 index 0000000..1a3f2b7 Binary files /dev/null and b/assets/images/logo_global_data.png differ diff --git a/pr_streamlit_template/__init__.py b/pr_streamlit_template/__init__.py index 35a01c0..c318304 100644 --- a/pr_streamlit_template/__init__.py +++ b/pr_streamlit_template/__init__.py @@ -13,7 +13,9 @@ def streamlit_custom_page(set_page_config: Optional[bool] = True) -> None: set_page_config (bool, optional): Sets the streamlit page config. Defaults to True. """ # Page layout config - logo_path = resource_filename("pr_streamlit_template", "assets/images/logo_coe.png") + logo_path = resource_filename( + "pr_streamlit_template", "assets/images/logo_global_data.png" + ) if set_page_config: st.set_page_config( diff --git a/pr_streamlit_template/assets/css/streamlit_PR.css b/pr_streamlit_template/assets/css/streamlit_PR.css index 59327e5..685b57f 100644 --- a/pr_streamlit_template/assets/css/streamlit_PR.css +++ b/pr_streamlit_template/assets/css/streamlit_PR.css @@ -7,9 +7,9 @@ footer { } -/* Footer CoE */ +/* Footer Global Data */ footer:after { - content: 'Made with \1F499 by your CoE team'; + content: 'Made with \1F499 by your Global Data team'; visibility: visible; display: block; position: relative; diff --git a/pr_streamlit_template/assets/images/logo_global_data.png b/pr_streamlit_template/assets/images/logo_global_data.png new file mode 100644 index 0000000..1a3f2b7 Binary files /dev/null and b/pr_streamlit_template/assets/images/logo_global_data.png differ