File size: 433 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
.reader-sidebar-recent {
$recent-item-padding-x: 18px;
$recent-site-icon-size: 16px;
$recent-item-gap: 8px;
&__site {
&-name {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
&-icon {
border-radius: 50%;
width: $recent-site-icon-size;
height: $recent-site-icon-size;
}
&-count {
font-weight: 400;
margin-right: 6px; // To get alignment with menu chevron icon; bleh
}
}
}
|