Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions components/dist/asciidoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,12 @@
@apply border-r-0;
}

.asciidoc-body tbody tr:last-child td,
.asciidoc-body tbody tr:last-child th {
/*
specificity to handle nested tables
todo: check if it's needed in any of the other table styles
*/
.asciidoc-body tbody > tr:last-child > td,
.asciidoc-body tbody > tr:last-child > th {
@apply border-b-0;
}

Expand Down
8 changes: 6 additions & 2 deletions components/src/assets/asciidoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,12 @@
@apply border-r-0;
}

.asciidoc-body tbody tr:last-child td,
.asciidoc-body tbody tr:last-child th {
/*
specificity to handle nested tables
todo: check if it's needed in any of the other table styles
*/
.asciidoc-body tbody > tr:last-child > td,
.asciidoc-body tbody > tr:last-child > th {
@apply border-b-0;
}

Expand Down
Loading