UX: focused spacing in more topics table (#23730)

This PR addresses spacing between focused & the topic header, by cancelling out the spacing added between the first table row while still having space between the tabs "Suggested" & "Related"
This commit is contained in:
Ty Correll 2023-09-29 13:22:57 -05:00 committed by GitHub
parent 5f3265fe01
commit 70a07abfa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 4 deletions

View File

@ -39,14 +39,18 @@
.topic-list-header:after {
content: "";
display: block;
height: 10px;
height: 12px;
}
.topic-list-body {
border-top: none;
.topic-list-item:last-of-type {
border-bottom: none;
.topic-list-item {
&:first-child td {
padding-top: 0;
}
&:last-of-type {
border-bottom: none;
}
}
}
}