CharlesCNorton commited on
Commit ·
9cbc245
1
Parent(s): 641acbc
Force compact grid with aggressive selectors
Browse files
app.py
CHANGED
|
@@ -157,39 +157,43 @@ body {
|
|
| 157 |
border-radius: 6px !important;
|
| 158 |
}
|
| 159 |
|
| 160 |
-
.tc-grid {
|
| 161 |
-
gap:
|
|
|
|
| 162 |
}
|
| 163 |
|
| 164 |
-
.tc-grid > div {
|
| 165 |
display: flex !important;
|
| 166 |
flex-direction: row !important;
|
| 167 |
flex-wrap: nowrap !important;
|
| 168 |
-
gap:
|
| 169 |
margin: 0 !important;
|
| 170 |
padding: 0 !important;
|
| 171 |
}
|
| 172 |
|
| 173 |
-
.tc-grid >
|
| 174 |
flex: 1 1 0 !important;
|
| 175 |
min-width: 0 !important;
|
|
|
|
| 176 |
margin: 0 !important;
|
| 177 |
padding: 0 !important;
|
| 178 |
}
|
| 179 |
|
| 180 |
-
.tc-grid .gr-button {
|
| 181 |
-
font-size:
|
| 182 |
-
border-radius: 6px;
|
| 183 |
-
padding:
|
| 184 |
margin: 0 !important;
|
| 185 |
min-width: 0 !important;
|
| 186 |
-
min-height:
|
| 187 |
-
height:
|
|
|
|
| 188 |
width: 100% !important;
|
|
|
|
| 189 |
}
|
| 190 |
|
| 191 |
-
.tc-grid .num .gr-button {
|
| 192 |
-
border-radius: 50%;
|
| 193 |
}
|
| 194 |
}
|
| 195 |
|
|
|
|
| 157 |
border-radius: 6px !important;
|
| 158 |
}
|
| 159 |
|
| 160 |
+
.tc-grid, .tc-grid * {
|
| 161 |
+
gap: 3px !important;
|
| 162 |
+
margin: 0 !important;
|
| 163 |
}
|
| 164 |
|
| 165 |
+
.tc-grid .row, .tc-grid > div, .tc-grid > .block {
|
| 166 |
display: flex !important;
|
| 167 |
flex-direction: row !important;
|
| 168 |
flex-wrap: nowrap !important;
|
| 169 |
+
gap: 3px !important;
|
| 170 |
margin: 0 !important;
|
| 171 |
padding: 0 !important;
|
| 172 |
}
|
| 173 |
|
| 174 |
+
.tc-grid .row > *, .tc-grid > div > * {
|
| 175 |
flex: 1 1 0 !important;
|
| 176 |
min-width: 0 !important;
|
| 177 |
+
max-width: 25% !important;
|
| 178 |
margin: 0 !important;
|
| 179 |
padding: 0 !important;
|
| 180 |
}
|
| 181 |
|
| 182 |
+
.tc-grid button, .tc-grid .gr-button {
|
| 183 |
+
font-size: 11px !important;
|
| 184 |
+
border-radius: 6px !important;
|
| 185 |
+
padding: 4px 0 !important;
|
| 186 |
margin: 0 !important;
|
| 187 |
min-width: 0 !important;
|
| 188 |
+
min-height: 28px !important;
|
| 189 |
+
max-height: 28px !important;
|
| 190 |
+
height: 28px !important;
|
| 191 |
width: 100% !important;
|
| 192 |
+
line-height: 1 !important;
|
| 193 |
}
|
| 194 |
|
| 195 |
+
.tc-grid .num button, .tc-grid .num .gr-button {
|
| 196 |
+
border-radius: 50% !important;
|
| 197 |
}
|
| 198 |
}
|
| 199 |
|