sindresorhus / github-markdown-css

The minimal amount of CSS to replicate the GitHub Markdown style
https://sindresorhus.com/github-markdown-css
MIT License
7.98k stars 2.1k forks source link

Tables are a bit off! #105

Open odebroqueville opened 1 year ago

odebroqueville commented 1 year ago

Below is a screenshot where I'm applying the github dark theme to ChatGPT's web page.

The table headers are hard to read because they're too dark. There's a big gap between the table header row and the rest of the table rows. Finally, there's a width mismatch between the table header row and the rest of the table.

Screenshot 2023-04-10 at 13 37 44

Nick-Hopps commented 1 year ago

have to cover the default style:

.markdown-body table {
  display: table;
}