Spaces:
Runtime error
Runtime error
Commit
·
30aaa45
1
Parent(s):
684dd3e
Update app.py
Browse files
app.py
CHANGED
@@ -36,29 +36,29 @@ Built with [CLIP-fa](https://github.com/sajjjadayobi/CLIPfa) model and 25k image
|
|
36 |
|
37 |
|
38 |
def main():
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
|
63 |
|
64 |
st.sidebar.markdown(description)
|
|
|
36 |
|
37 |
|
38 |
def main():
|
39 |
+
st.markdown('''
|
40 |
+
<style>
|
41 |
+
.block-container{
|
42 |
+
max-width: 1200px;
|
43 |
+
}
|
44 |
+
section.main>div:first-child {
|
45 |
+
padding-top: 0px;
|
46 |
+
}
|
47 |
+
section:not(.main)>div:first-child {
|
48 |
+
padding-top: 30px;
|
49 |
+
}
|
50 |
+
div.reportview-container > section:first-child{
|
51 |
+
max-width: 320px;
|
52 |
+
}
|
53 |
+
#MainMenu {
|
54 |
+
visibility: hidden;
|
55 |
+
}
|
56 |
+
footer {
|
57 |
+
visibility: hidden;
|
58 |
+
}
|
59 |
+
</style>''',
|
60 |
+
|
61 |
+
unsafe_allow_html=True)
|
62 |
|
63 |
|
64 |
st.sidebar.markdown(description)
|