feat(Design/Navbar): move logout button to tooltip on user avatar hover

This commit is contained in:
Kentai Radiquum 2024-05-11 07:04:12 +05:00
parent 65b26613c5
commit 388e76c761
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -65,6 +65,17 @@ export const NavigationRail = (props) => {
width="64" width="64"
height="64" height="64"
/> />
<div className="tooltip bottom round">
{" "}
{userStore.isAuth && (
<button
className="circle transparent"
onClick={() => userStore.logout()}
>
<i>logout</i>
</button>
)}
</div>
</Link> </Link>
) : ( ) : (
<button <button
@ -90,15 +101,6 @@ export const NavigationRail = (props) => {
); );
})} })}
{userStore.isAuth && (
<button
className="circle transparent"
onClick={() => userStore.logout()}
>
<i>logout</i>
</button>
)}
<span className="max"></span> <span className="max"></span>
<button className="circle transparent" onClick={() => copyToClipboard()}> <button className="circle transparent" onClick={() => copyToClipboard()}>