Plsek commited on
Commit
091111e
·
1 Parent(s): 3159440

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -167,7 +167,8 @@ if uploaded_file is not None:
167
 
168
  with col1:
169
  # st.markdown("""<style>[data-baseweb="select"] {margin-top: -26px;}</style>""", unsafe_allow_html=True)
170
- st.markdown("<style>{margin-top: -26px;}</style>", unsafe_allow_html=True)
 
171
  max_scale = int(data.shape[0] // 128)
172
  scale = st.selectbox('Scale:',[f"{(i+1)*128}x{(i+1)*128}" for i in range(max_scale)], label_visibility="hidden")
173
  scale = int(scale.split("x")[0]) // 128
@@ -203,7 +204,7 @@ if uploaded_file is not None:
203
  plot_decomposed(image_decomposed)
204
 
205
  with col6:
206
- st.markdown("<br>", unsafe_allow_html=True)
207
  # st.markdown("""<style>[data-baseweb="select"] {margin-top: 16px;}</style>""", unsafe_allow_html=True)
208
  fname = uploaded_file.name.strip(".fits")
209
 
 
167
 
168
  with col1:
169
  # st.markdown("""<style>[data-baseweb="select"] {margin-top: -26px;}</style>""", unsafe_allow_html=True)
170
+ # st.markdown("<style>{margin-top: -26px;}</style>", unsafe_allow_html=True)
171
+ st.markdown("<br style='margin:-14px 0'>", unsafe_allow_html=True)
172
  max_scale = int(data.shape[0] // 128)
173
  scale = st.selectbox('Scale:',[f"{(i+1)*128}x{(i+1)*128}" for i in range(max_scale)], label_visibility="hidden")
174
  scale = int(scale.split("x")[0]) // 128
 
204
  plot_decomposed(image_decomposed)
205
 
206
  with col6:
207
+ st.markdown("<br style='margin:4px 0'>", unsafe_allow_html=True)
208
  # st.markdown("""<style>[data-baseweb="select"] {margin-top: 16px;}</style>""", unsafe_allow_html=True)
209
  fname = uploaded_file.name.strip(".fits")
210