Skip to content

Commit

Permalink
style: optimize more icon in nav (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanyuan0704 authored Oct 19, 2023
1 parent 8c1dce1 commit 6b8f55e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const HiddenLinks = (props: IHiddenLinksProps) => {
marginRight: '-2px',
border: '1px solid var(--rp-c-divider-light)',
}}
className="absolute top-13 right-0 z-1 p-3 w-32 rounded-xl bg-white flex flex-wrap gap-4"
className="absolute top-8 right-0 z-1 p-3 w-32 rounded-2xl bg-white flex flex-wrap gap-4"
>
{links.map(item => (
<LinkContent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const ShownLinks = (props: IShownLinksProps) => {
))}
</div>
{moreIconVisible ? (
<div className="md:ml-1" onMouseEnter={mouseEnter}>
<div className="md:ml-1 p-2" onMouseEnter={mouseEnter}>
<ArrowDown />
</div>
) : null}
Expand Down

0 comments on commit 6b8f55e

Please sign in to comment.