blob: c07b473bfa8fad43224dbcb128d18fd74d36d266 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Fix pre-existing items' positioning on GHE */
.reponav-dropdown a.dropdown-item:not(.rgh-reponav-more)::before {
content: '';
display: inline-block;
width: 16px;
}
/* Ensure all icons are 16px wide for alignment */
.rgh-reponav-more svg {
width: 16px;
}
/* Optically align Dependencies dropdown link */
.rgh-reponav-more .octicon-package {
margin-right: 2px;
margin-left: -2px;
}
|