Skip to content

Commit a17411a

Browse files
Adding more column tables
1 parent 6ffab17 commit a17411a

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

production/adjustments-v2.1.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,6 +1259,30 @@ body.sj-page-lesson {
12591259
minmax(min-content, max-content)
12601260
) !important;
12611261
}
1262+
1263+
.three-col-table {
1264+
/* Three column table */
1265+
grid-template-columns: repeat(
1266+
3,
1267+
minmax(min-content, max-content)
1268+
) !important;
1269+
}
1270+
1271+
.four-col-table {
1272+
/* Four column table */
1273+
grid-template-columns: repeat(
1274+
4,
1275+
minmax(min-content, max-content)
1276+
) !important;
1277+
}
1278+
1279+
.five-col-table {
1280+
/* Five column table */
1281+
grid-template-columns: repeat(
1282+
5,
1283+
minmax(min-content, max-content)
1284+
) !important;
1285+
}
12621286

12631287
blockquote.cg {
12641288
cite {

0 commit comments

Comments
 (0)