Skip to content

Commit

Permalink
fix: last table cell padding (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarnsley authored Jun 13, 2023
1 parent dae86bc commit c869529
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions resources/assets/css/_tables.css
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,15 @@
.table-container table thead th.last-until-md,
.table-container table thead th.last-until-md-lg,
.table-container table thead th.last-until-sm,
.table-container table tbody td.hoverable-cell.last-cell-sm .table-cell-content,
.table-container table tbody td.hoverable-cell.last-cell-md .table-cell-content,
.table-container
table
tbody
td.hoverable-cell.last-cell-md-lg
.table-cell-content,
.table-container table tbody td.hoverable-cell.last-cell-lg .table-cell-content,
.table-container table tbody td.hoverable-cell.last-cell-xl .table-cell-content,
.table-container table tbody td.hoverable-cell:last-child .table-cell-content {
@apply pr-0;
}
Expand Down Expand Up @@ -506,6 +515,11 @@
content: none;
}

.table-container
table
tbody
td.hoverable-cell.last-cell-sm
.table-cell-content,
.table-container table thead th.last-until-sm {
@apply pr-3;
}
Expand All @@ -529,6 +543,11 @@
content: none;
}

.table-container
table
tbody
td.hoverable-cell.last-cell-md
.table-cell-content,
.table-container table thead th.last-until-md {
@apply pr-3;
}
Expand All @@ -552,6 +571,11 @@
content: none;
}

.table-container
table
tbody
td.hoverable-cell.last-cell-md-lg
.table-cell-content,
.table-container table thead th.last-until-md-lg {
@apply pr-3;
}
Expand All @@ -575,6 +599,11 @@
content: none;
}

.table-container
table
tbody
td.hoverable-cell.last-cell-lg
.table-cell-content,
.table-container table thead th.last-until-lg {
@apply pr-3;
}
Expand All @@ -598,6 +627,11 @@
content: none;
}

.table-container
table
tbody
td.hoverable-cell.last-cell-xl
.table-cell-content,
.table-container table thead th.last-until-xl {
@apply pr-3;
}
Expand Down

0 comments on commit c869529

Please sign in to comment.