Skip to content

Commit

Permalink
Fix border color inheritance in Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwoodnz committed Jan 5, 2024
1 parent a3629da commit cb883e1
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
.wp-block-wporg-site-meta-list {
margin-block-start: 0;

table,
tbody,
tr {
// Needed to pass border color down to `td` and `th`.
border-color: inherit;
}

table {
margin: 0;
padding: 0;
width: 100%;
// Needed to pass border color down to `td` and `th`.
border-color: inherit;
border-spacing: 0;
}

Expand Down

0 comments on commit cb883e1

Please sign in to comment.