dolev31 commited on
Commit
2b1c2c0
Β·
1 Parent(s): 5ee0240

Fix table bottom closure: add overflow hidden and last-row border

Browse files

Tables were missing visual bottom closure due to content overflowing
the rounded border container. Added overflow:hidden to .table-wrap
and a 2px bottom border on the last row.

Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -606,6 +606,11 @@ CUSTOM_CSS = """
606
  .table-wrap {
607
  border-radius: 12px !important;
608
  border: 1px solid #e2e8f0 !important;
 
 
 
 
 
609
  }
610
  /* Override Gradio 6 internal: force nowrap on header text */
611
  .header-content {
 
606
  .table-wrap {
607
  border-radius: 12px !important;
608
  border: 1px solid #e2e8f0 !important;
609
+ overflow: hidden !important;
610
+ }
611
+ /* Ensure last row has a visible bottom border for table closure */
612
+ table tbody tr:last-child td {
613
+ border-bottom: 2px solid #e2e8f0 !important;
614
  }
615
  /* Override Gradio 6 internal: force nowrap on header text */
616
  .header-content {