Spaces:
Running
Running
James McCool
commited on
Commit
·
21ba2d1
1
Parent(s):
00000b9
Update CSS selector in app.py to improve layout consistency
Browse filesModified the CSS selector for box-sizing to enhance layout rendering across different elements. This change aims to ensure a more uniform appearance and improve the overall user experience.
app.py
CHANGED
@@ -61,7 +61,7 @@ st.markdown("""
|
|
61 |
color: white;
|
62 |
}
|
63 |
|
64 |
-
|
65 |
box-sizing: content-box !important;
|
66 |
}
|
67 |
|
|
|
61 |
color: white;
|
62 |
}
|
63 |
|
64 |
+
div[style*="box-sizing"] {
|
65 |
box-sizing: content-box !important;
|
66 |
}
|
67 |
|