Spaces:
Runtime error
Runtime error
justheuristic
commited on
Commit
•
93aa845
1
Parent(s):
279a08c
vspace
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ st.markdown(f"<style>{content_style_css}</style>", unsafe_allow_html=True) # ap
|
|
32 |
|
33 |
def content_text(text: str, vspace_before: int = 0, vspace_after: int = 0):
|
34 |
st.markdown(f'<center><div class="padded faded main_text" '
|
35 |
-
f'style="padding-top: {
|
36 |
f'{text}</div><center>',
|
37 |
unsafe_allow_html=True)
|
38 |
CITATIONS = {}
|
|
|
32 |
|
33 |
def content_text(text: str, vspace_before: int = 0, vspace_after: int = 0):
|
34 |
st.markdown(f'<center><div class="padded faded main_text" '
|
35 |
+
f'style="padding-top: {vspace_before}px;padding-bottom: {vspace_after}px;">'
|
36 |
f'{text}</div><center>',
|
37 |
unsafe_allow_html=True)
|
38 |
CITATIONS = {}
|