mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-14 02:48:45 -04:00
Fix top keyline on tables with hidden col headings
The way that we collapse column headings so that they don’t take up any vertical space is by setting their `font-size` to zero. However this seems to take them out of the flow of the document, so their top border also disappears. This commit sets the `font-size` to the smallest non-zero value to avoid this.
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
|
||||
.table-field-headings {
|
||||
th {
|
||||
font-size: 0;
|
||||
font-size: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user