Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -107,8 +107,21 @@ def add_rank_and_format(df):
|
|
107 |
# 4. Prevent checkbox groups from taking up too much space
|
108 |
|
109 |
css = """
|
|
|
|
|
|
|
110 |
|
|
|
|
|
|
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
"""
|
113 |
|
114 |
|
|
|
107 |
# 4. Prevent checkbox groups from taking up too much space
|
108 |
|
109 |
css = """
|
110 |
+
table > thead {
|
111 |
+
white-space: normal
|
112 |
+
}
|
113 |
|
114 |
+
table {
|
115 |
+
--cell-width-1: 250px
|
116 |
+
}
|
117 |
|
118 |
+
table > tbody > tr > td:nth-child(2) > div {
|
119 |
+
overflow-x: auto
|
120 |
+
}
|
121 |
+
|
122 |
+
.filter-checkbox-group {
|
123 |
+
max-width: max-content;
|
124 |
+
}
|
125 |
"""
|
126 |
|
127 |
|