Skip to content

Commit 27bce4a

Browse files
Merge pull request #88 from kallewesterling/main
Unsetting border on last `.table-row` in each table
2 parents 5bf505f + b14ea2f commit 27bce4a

1 file changed

Lines changed: 19 additions & 3 deletions

File tree

production/adjustments-v2.1.css

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,30 +1258,46 @@ body.sj-page-lesson {
12581258
2,
12591259
minmax(min-content, max-content)
12601260
) !important;
1261+
1262+
.table-row:nth-last-child(-n + 2) {
1263+
border: unset !important;
1264+
}
12611265
}
1262-
1266+
12631267
.three-col-table {
12641268
/* Three column table */
12651269
grid-template-columns: repeat(
12661270
3,
12671271
minmax(min-content, max-content)
12681272
) !important;
1273+
1274+
.table-row:nth-last-child(-n + 3) {
1275+
border: unset !important;
1276+
}
12691277
}
1270-
1278+
12711279
.four-col-table {
12721280
/* Four column table */
12731281
grid-template-columns: repeat(
12741282
4,
12751283
minmax(min-content, max-content)
12761284
) !important;
1285+
1286+
.table-row:nth-last-child(-n + 4) {
1287+
border: unset !important;
1288+
}
12771289
}
1278-
1290+
12791291
.five-col-table {
12801292
/* Five column table */
12811293
grid-template-columns: repeat(
12821294
5,
12831295
minmax(min-content, max-content)
12841296
) !important;
1297+
1298+
.table-row:nth-last-child(-n + 5) {
1299+
border: unset !important;
1300+
}
12851301
}
12861302

12871303
blockquote.cg {

0 commit comments

Comments
 (0)