Skip to content

Commit

Permalink
fix: Markdown table formatting needs spacing and shading.
Browse files Browse the repository at this point in the history
  • Loading branch information
billyc committed Feb 10, 2022
1 parent 64a6f3e commit f7cbd72
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,28 @@ a:hover {
margin-top: 0.5rem;
padding-left: 1.5rem;
}
table {
margin: 1rem 0rem;
color: var(--text);
}
th {
color: var(--text);
border-bottom: 1px solid #88888888;
padding-bottom: 0.25rem;
}
tr:nth-child(even) {
background-color: #88888822;
}
tr.displaynone ~ tr {
background-color: transparent;
}
td {
padding-right: 1rem;
}
}
.mapboxgl-popup-content {
Expand Down

0 comments on commit f7cbd72

Please sign in to comment.