diff options
author | 2020-01-05 16:00:09 +0100 | |
---|---|---|
committer | 2020-01-05 22:00:09 +0700 | |
commit | a76ed868a84cd0078d8423999faaba7380b0df1b (patch) | |
tree | ea47a07a93af2997b269bae49c3b7236594171b4 /source | |
parent | cfbc2d4c7166eea2bd4d653ff93a746b87e53d93 (diff) | |
download | refined-github-a76ed868a84cd0078d8423999faaba7380b0df1b.tar.gz refined-github-a76ed868a84cd0078d8423999faaba7380b0df1b.tar.zst refined-github-a76ed868a84cd0078d8423999faaba7380b0df1b.zip |
Fix alignment of `forked-to` icon (#2666)
Diffstat (limited to 'source')
-rw-r--r-- | source/features/forked-to.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/forked-to.tsx b/source/features/forked-to.tsx index 342467cc..6dd5725f 100644 --- a/source/features/forked-to.tsx +++ b/source/features/forked-to.tsx @@ -93,7 +93,7 @@ async function init(): Promise<void> { href={`/${fork}`} className="select-menu-item" title={`Open your fork to ${fork}`}> - {forkIcon()} + <span className="select-menu-item-icon">{forkIcon()}</span> {fork} </a> )} |