mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 16:24:40 +00:00
feat(Design/Navbar): move logout button to tooltip on user avatar hover
This commit is contained in:
parent
65b26613c5
commit
388e76c761
1 changed files with 11 additions and 9 deletions
|
@ -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()}>
|
||||||
|
|
Loading…
Add table
Reference in a new issue