James McCool commited on
Commit
00000b9
·
1 Parent(s): 894e5c8

Update CSS styles in app.py to enhance layout and box-sizing

Browse files

Removed redundant font size declaration and added specific box-sizing property to improve the layout of the application. This change aims to enhance the visual presentation and user experience.

Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -59,12 +59,11 @@ st.markdown("""
59
  div[data-baseweb="select"] > div {
60
  background-color: #DAA520;
61
  color: white;
62
- )
63
-
64
- div {
65
- font-size: 18px;
66
  }
67
 
 
 
 
68
 
69
  </style>""", unsafe_allow_html=True)
70
 
 
59
  div[data-baseweb="select"] > div {
60
  background-color: #DAA520;
61
  color: white;
 
 
 
 
62
  }
63
 
64
+ .stVerticalBlock.st-emotion-cache-6kio1c.eu6p4el3 {
65
+ box-sizing: content-box !important;
66
+ }
67
 
68
  </style>""", unsafe_allow_html=True)
69