Merge pull request #3809 from stuartbreckenridge/fix-3781

Fixes dark mode on Keyboard Shortcuts
This commit is contained in:
Maurice Parker
2023-01-13 15:16:32 -08:00
committed by GitHub

View File

@@ -12,6 +12,16 @@
line-height: 1.4em;
font-family: -apple-system;
}
@media (prefers-color-scheme: dark) {
body {
color: white;
background-color: #333333;
}
table tr:nth-child(odd) {
background-color: #1E1E1E !important;
}
}
table {
width: 100%;
line-height: 2.0em;