shortened the url of the auth, fixed sidebar toggle issue and fixed browser tab
This commit is contained in:
@@ -29,7 +29,7 @@ const SidebarWrap = styled("div")(({ theme }) => ({
|
||||
width: '100%'
|
||||
}));
|
||||
|
||||
const Sidebar = ({ toogleActive }) => {
|
||||
const Sidebar = ({ toggleActive }) => {
|
||||
return (
|
||||
<>
|
||||
<div className='leftSidebarDark'>
|
||||
@@ -58,11 +58,12 @@ const Sidebar = ({ toogleActive }) => {
|
||||
</Link>
|
||||
|
||||
<IconButton
|
||||
onClick={toogleActive}
|
||||
onClick={toggleActive}
|
||||
size="small"
|
||||
sx={{
|
||||
background: 'rgb(253, 237, 237)',
|
||||
display: { lg: 'none' }
|
||||
display: { lg: 'none' },
|
||||
marginLeft: "1rem"
|
||||
}}
|
||||
>
|
||||
<ClearIcon />
|
||||
|
||||
Reference in New Issue
Block a user