mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-02 02:10:27 +00:00
Change mobile nav buttons order (again)
This commit is contained in:
@@ -80,6 +80,9 @@ const MobileNav: FC<Props> = ({ open, close }) => {
|
||||
<div className='close'>
|
||||
<IconButton icon={dark ? '/dark-close.svg' : '/light-close.svg'} onClick={close} />
|
||||
</div>
|
||||
<div className='mobile-button-wrapper'>
|
||||
<Button onClick={() => toggle()}>{dark ? 'Light Mode' : 'Dark Mode'}</Button>
|
||||
</div>
|
||||
<div className='mobile-button-wrapper'>
|
||||
<Button
|
||||
onClick={() => {
|
||||
@@ -110,9 +113,6 @@ const MobileNav: FC<Props> = ({ open, close }) => {
|
||||
Blog
|
||||
</Button>
|
||||
</div>
|
||||
<div className='mobile-button-wrapper'>
|
||||
<Button onClick={() => toggle()}>{dark ? 'Light Mode' : 'Dark Mode'}</Button>
|
||||
</div>
|
||||
</Bar>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user