Fix #823: Apply default padding to table headers

This PR fixes #823 by applying the default padding for table cells (`padding: 3px 20px;`) to header cells.
This commit is contained in:
Stephan Druskat 2018-11-15 13:32:36 +01:00 committed by Eric Huss
parent a8d6337ac6
commit e880fb6339
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;
}