Skip to content

Commit

Permalink
fix(table): monkey patch top table border
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmatthew committed Jan 6, 2022
1 parent a96ab3f commit 827eae1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/assets/css/talis.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/talis.css.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/otis/module/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ <h1>Encouraging deeper discussion</h1>

<div class="table-responsive">
<table class="table table-lg table-striped mb-3">
<caption class="visually-hidden">A brief summary of the contents of this table.</caption>
<thead>
<tr>
<th>Title</th>
Expand Down
5 changes: 5 additions & 0 deletions scss/_tables.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Temp override while we wait for https://github.com/twbs/bootstrap/pull/35200 to end up in live
.table > :not(caption):not(colgroup) + * {
border-top: (2 * $table-border-width) solid $table-group-separator-color;
}

th {
color: $black;
}
Expand Down

0 comments on commit 827eae1

Please sign in to comment.