mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +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"
|
||||
height="64"
|
||||
/>
|
||||
<div className="tooltip bottom round">
|
||||
{" "}
|
||||
{userStore.isAuth && (
|
||||
<button
|
||||
className="circle transparent"
|
||||
onClick={() => userStore.logout()}
|
||||
>
|
||||
<i>logout</i>
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</Link>
|
||||
) : (
|
||||
<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>
|
||||
|
||||
<button className="circle transparent" onClick={() => copyToClipboard()}>
|
||||
|
|
Loading…
Add table
Reference in a new issue