James McCool commited on
Commit
2eb1ce8
·
1 Parent(s): 21ba2d1

Update CSS selector in app.py to simplify box-sizing implementation

Browse files

Changed the CSS selector for box-sizing to a more general format, aiming to streamline the styling process and maintain layout consistency across elements. This adjustment contributes to a cleaner and more efficient codebase.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ st.markdown("""
61
  color: white;
62
  }
63
 
64
- div[style*="box-sizing"] {
65
  box-sizing: content-box !important;
66
  }
67
 
 
61
  color: white;
62
  }
63
 
64
+ div{
65
  box-sizing: content-box !important;
66
  }
67