James McCool commited on
Commit
03c5140
·
1 Parent(s): 2eb1ce8

Add CSS rule in app.py to set font size for table rows

Browse files

Introduced a new CSS rule to set the font size of table rows to 8px, aiming to enhance the visual presentation and readability of tabular data in the application. This change contributes to a more consistent and accessible user interface.

Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -65,6 +65,10 @@ st.markdown("""
65
  box-sizing: content-box !important;
66
  }
67
 
 
 
 
 
68
  </style>""", unsafe_allow_html=True)
69
 
70
 
 
65
  box-sizing: content-box !important;
66
  }
67
 
68
+ tr{
69
+ font-size: 8px;
70
+ }
71
+
72
  </style>""", unsafe_allow_html=True)
73
 
74