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:
parent
5f3265fe01
commit
70a07abfa4
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue