Skip to content

Commit

Permalink
Add some basic styling for tables
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillbobyrev committed Nov 29, 2023
1 parent 110a87a commit 318b83e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -192,3 +192,17 @@ h2::after {
ul:has(li>input) {
list-style: none;
}

table {
border-collapse: collapse;
width: 100%;
}

td, th {
border: 1px solid var(--muted);
padding: 0 1em;
}

th {
background-color: var(--code-background);
}

0 comments on commit 318b83e

Please sign in to comment.