mirror of
https://github.com/liyunze-coding/RythonDev.git
synced 2026-09-22 07:44:26 +00:00
fixed green light alignment
This commit is contained in:
parent
a4140819d6
commit
8da1496256
1 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ export const HoverNavigation = ({
|
|||
ease: "easeInOut",
|
||||
}}
|
||||
className={cn(
|
||||
"flex w-0 flex-row items-center justify-center whitespace-nowrap",
|
||||
"flex w-0 flex-row items-center justify-center pr-2 whitespace-nowrap",
|
||||
className,
|
||||
)}
|
||||
>
|
||||
|
|
@ -61,7 +61,7 @@ export const HoverNavigation = ({
|
|||
Available for work
|
||||
</a>
|
||||
<div
|
||||
className={`relative z-50 ml-3 ${visible ? "hidden" : "inline-block"}`}
|
||||
className={`relative z-50 ml-3 ${visible ? "hidden" : "inline-block px-2"}`}
|
||||
>
|
||||
<div className="absolute top-1/2 left-1/2 aspect-square w-[6px] -translate-x-1/2 -translate-y-1/2 rounded-full bg-green-500"></div>
|
||||
<div className="animate-glow absolute top-1/2 left-1/2 aspect-square w-[6px] -translate-x-1/2 -translate-y-1/2 rounded-full bg-green-500"></div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue