Merge pull request #824 from sdruskat/patch-1

Fix #823: Apply default padding to table headers
This commit is contained in:
Eric Huss 2019-08-09 09:49:56 -07:00 committed by GitHub
commit 0c37b912ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -92,6 +92,9 @@ table thead td {
font-weight: 700;
border: none;
}
table thead th {
padding: 3px 20px;
}
table thead tr {
border: 1px var(--table-header-bg) solid;
}