Fixed issue with list borders (#17792)

no refs

- Removed unnecessary `border-bottom` on list header and `border-top:
none` that was added to avoid double borders
This commit is contained in:
Djordje Vlaisavljevic 2023-08-23 11:36:45 +01:00 committed by GitHub
parent 288859fc95
commit 76adef7d9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,6 @@ ul.nostyle li {
.gh-list-header {
display: table-cell;
vertical-align: middle;
border-bottom: var(--main-color-area-divider) 1px solid;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 0.03em;
@ -91,10 +90,6 @@ ul.nostyle li {
padding: 8px 20px;
}
.gh-list-row:nth-of-type(2) .gh-list-data {
border-top: none;
}
.gh-list-row .gh-list-data:first-child {
padding-left: 0;
}