@@ -49,7 +49,7 @@ export default function Header() {
4949 } , [ comp , competitionId , queryClient , wcif ] ) ;
5050
5151 return (
52- < header className = "flex w-full shadow-md p-2 h-12 items-center print:hidden z-20 bg-panel" >
52+ < header className = "z-20 flex items-center w-full h-12 p-2 shadow-md print:hidden bg-panel" >
5353 < div className = "flex items-center space-x-1" >
5454 < Link to = "/" className = "link-inline" >
5555 < i className = "fa fa-home" />
@@ -71,20 +71,20 @@ export default function Header() {
7171 } } // a style object to be applied to the popover container
7272 content = {
7373 < div
74- className = "bg-panel border -2 border-tertiary-weak shadow-xl mt-2 z-50 "
74+ className = "z-50 mt -2 border-2 shadow-xl bg-panel border-tertiary-weak "
7575 onClick = { ( ) => setIsPopoverOpen ( ! isPopoverOpen ) } >
76- < Link to = "/settings" className = "link-inline block px-3 py-2 w-32 hover-bg-tertiary" >
76+ < Link to = "/settings" className = "block w-32 px-3 py-2 link-inline hover-bg-tertiary" >
7777 Settings
7878 </ Link >
7979 < button
8080 onClick = { signOut }
81- className = "link-inline px-3 py-2 w-32 text-left hover-bg-tertiary" >
81+ className = "w-32 px-3 py-2 text-left link-inline hover-bg-tertiary" >
8282 Logout
8383 </ button >
8484 </ div >
8585 } >
8686 < div
87- className = "w-10 h-10 relative flex justify -center items -center rounded-full cursor-pointer"
87+ className = "relative flex items -center justify -center w-10 h-10 rounded-full cursor-pointer"
8888 onClick = { ( ) => setIsPopoverOpen ( ( prev ) => ! prev ) } >
8989 < img src = { user . avatar ?. thumb_url || '' } alt = { user . name } className = "rounded-full" />
9090 </ div >
@@ -93,8 +93,10 @@ export default function Header() {
9393 < div className = "flex items-center space-x-2" >
9494 < Link to = "/settings" className = "link-inline" >
9595 < i className = "fa fa-gear" />
96+ Settings
9697 </ Link >
97- < button onClick = { signIn } className = "link-inline mx-2" >
98+ < span > |</ span >
99+ < button onClick = { signIn } className = "mx-2 link-inline" >
98100 { t ( 'common.login' ) }
99101 </ button >
100102 </ div >
0 commit comments