Spaces:
Running
on
T4
Running
on
T4
rerank model
Browse files
app.py
CHANGED
@@ -58,8 +58,10 @@ st.markdown("""
|
|
58 |
backdrop-filter: blur(8px); /* frosted glass effect */
|
59 |
border-radius: 12px;
|
60 |
padding: 24px 16px;
|
|
|
|
|
|
|
61 |
height: 240px;
|
62 |
-
width: 350px;
|
63 |
color: white;
|
64 |
box-shadow: 0 0 10px rgba(0,0,0,0.3);
|
65 |
transition: transform 0.2s ease, background 0.2s ease;
|
@@ -159,7 +161,7 @@ with spacer_col:
|
|
159 |
|
160 |
|
161 |
|
162 |
-
col1, col2, col3 = st.columns([
|
163 |
|
164 |
with col1:
|
165 |
st.markdown("""
|
|
|
58 |
backdrop-filter: blur(8px); /* frosted glass effect */
|
59 |
border-radius: 12px;
|
60 |
padding: 24px 16px;
|
61 |
+
width: 100%;
|
62 |
+
max-width: 350px;
|
63 |
+
margin: 0 auto;
|
64 |
height: 240px;
|
|
|
65 |
color: white;
|
66 |
box-shadow: 0 0 10px rgba(0,0,0,0.3);
|
67 |
transition: transform 0.2s ease, background 0.2s ease;
|
|
|
161 |
|
162 |
|
163 |
|
164 |
+
col1, col2, col3 = st.columns([1, 1, 1])
|
165 |
|
166 |
with col1:
|
167 |
st.markdown("""
|