Skip to content

Commit

Permalink
feat: Add styles for var and tfoot elements
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Jun 23, 2024
1 parent d3cb065 commit 2b4cb0b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 2.2.1 (upcoming)

### Feature(s)

- Add styles for `var` and `tfoot` elements

### Cleanup(s)

- Make Informal Cards' links use the accent color of the card
Expand Down
5 changes: 5 additions & 0 deletions src/styles/components/_semantics.scss
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,8 @@ ins {
cite {
font-style: italic;
}

var {
font-style: italic;
font-family: var(--font-old-style);
}
3 changes: 2 additions & 1 deletion src/styles/components/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ table {
table-layout: fixed;
overflow: hidden;

th {
th,
tfoot {
background-color: var(--color-background-mute);
padding: 0.625rem 1.25rem;
color: var(--color-accent);
Expand Down

0 comments on commit 2b4cb0b

Please sign in to comment.