Spaces:
Runtime error
Runtime error
Update utils.py
Browse files
utils.py
CHANGED
@@ -73,13 +73,21 @@ def layout(*args):
|
|
73 |
|
74 |
def footer():
|
75 |
|
76 |
-
myargs = []
|
77 |
-
layout(*myargs)
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
st.markdown("This app uses the [min(DALL·E)](https://github.com/kuprel/min-dalle) port of [DALL·E mini](https://github.com/borisdayma/dalle-mini)")
|
80 |
st.markdown("Created by [Jonathan Malott](https://jonathanmalott.com)")
|
81 |
st.markdown("[Good Systems Grand Challenge](https://bridgingbarriers.utexas.edu/good-systems), The University of Texas at Austin. Advised by Dr. Junfeng Jiao.")
|
82 |
-
|
83 |
|
84 |
|
85 |
|
|
|
73 |
|
74 |
def footer():
|
75 |
|
76 |
+
#myargs = []
|
77 |
+
#layout(*myargs)
|
78 |
+
style = """
|
79 |
+
<style>
|
80 |
+
# MainMenu {visibility: hidden;}
|
81 |
+
button[title="View fullscreen"]{display:none;}
|
82 |
+
body {background-color: white;}
|
83 |
+
</style>
|
84 |
+
"""
|
85 |
+
st.markdown(style, unsafe_allow_html=True)
|
86 |
+
|
87 |
st.markdown("This app uses the [min(DALL·E)](https://github.com/kuprel/min-dalle) port of [DALL·E mini](https://github.com/borisdayma/dalle-mini)")
|
88 |
st.markdown("Created by [Jonathan Malott](https://jonathanmalott.com)")
|
89 |
st.markdown("[Good Systems Grand Challenge](https://bridgingbarriers.utexas.edu/good-systems), The University of Texas at Austin. Advised by Dr. Junfeng Jiao.")
|
90 |
+
|
91 |
|
92 |
|
93 |
|