Update app.py
Browse files
app.py
CHANGED
|
@@ -102,6 +102,14 @@ def main():
|
|
| 102 |
logo_space, title_space, _, tooltip_space = st.columns([2.03, 5, 1, 0.75], gap="small")
|
| 103 |
|
| 104 |
with logo_space:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 105 |
st.image('logo.png', width=48)
|
| 106 |
|
| 107 |
with title_space:
|
|
|
|
| 102 |
logo_space, title_space, _, tooltip_space = st.columns([2.03, 5, 1, 0.75], gap="small")
|
| 103 |
|
| 104 |
with logo_space:
|
| 105 |
+
st.write(
|
| 106 |
+
"""
|
| 107 |
+
<div style="display: flex; justify-content: left;">
|
| 108 |
+
<b><span style="text-align: center; color: #101414; font-size: 10px">FPT Corporation</span></b>
|
| 109 |
+
</div>
|
| 110 |
+
""",
|
| 111 |
+
unsafe_allow_html=True
|
| 112 |
+
)
|
| 113 |
st.image('logo.png', width=48)
|
| 114 |
|
| 115 |
with title_space:
|