match offcanvas nym position to navbar
This commit is contained in:
parent
9820055aee
commit
ef5a92dff4
|
@ -47,7 +47,7 @@ export default function BottomBar ({ sub }) {
|
|||
}
|
||||
|
||||
return (
|
||||
<div className={classNames('d-block d-md-none', styles.footer)}>
|
||||
<div className={classNames('d-block d-md-none', styles.footer, styles.footerPadding)}>
|
||||
<Navbar className='container px-0'>
|
||||
<Nav className={styles.footerNav}>
|
||||
<Offcanvas me={me} {...props} />
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
background-color: var(--bs-body-bg);
|
||||
border-top: 1px solid var(--theme-toolbarActive);
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.footerPadding {
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
}
|
||||
|
||||
|
|
|
@ -6,6 +6,8 @@ import { useServiceWorker } from '@/components/serviceworker'
|
|||
import { signOut } from 'next-auth/react'
|
||||
import { LoginButtons, NavWalletSummary } from '../common'
|
||||
import AnonIcon from '@/svgs/spy-fill.svg'
|
||||
import styles from './footer.module.css'
|
||||
import classNames from 'classnames'
|
||||
|
||||
export default function OffCanvas ({ me, dropNavKey }) {
|
||||
const [show, setShow] = useState(false)
|
||||
|
@ -94,16 +96,18 @@ export default function OffCanvas ({ me, dropNavKey }) {
|
|||
</>
|
||||
)
|
||||
: <LoginButtons />}
|
||||
<Navbar className='container d-flex flex-row px-0 p-2 mt-auto text-muted'>
|
||||
<Nav>
|
||||
<Link href={`/${me?.name || 'anon'}`} className='d-flex flex-row p-2 mt-auto text-muted'>
|
||||
<MeImage />
|
||||
<div className='ms-2'>
|
||||
@{me?.name || 'anon'}
|
||||
</div>
|
||||
</Link>
|
||||
</Nav>
|
||||
</Navbar>
|
||||
<div className={classNames(styles.footerPadding, 'mt-auto')}>
|
||||
<Navbar className={classNames('container d-flex flex-row px-0 text-muted')}>
|
||||
<Nav>
|
||||
<Link href={`/${me?.name || 'anon'}`} className='d-flex flex-row p-2 mt-auto text-muted'>
|
||||
<MeImage />
|
||||
<div className='ms-2'>
|
||||
@{me?.name || 'anon'}
|
||||
</div>
|
||||
</Link>
|
||||
</Nav>
|
||||
</Navbar>
|
||||
</div>
|
||||
</div>
|
||||
</Offcanvas.Body>
|
||||
</Offcanvas>
|
||||
|
|
Loading…
Reference in New Issue