Skip to content

Commit

Permalink
Fix mobile navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
thenamankumar committed Jun 4, 2020
1 parent a60c3de commit edee382
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/Navbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Navbar = (props) => {
return (
<nav className="navbar fixed-top p-none">
<div className="row w-100">
<div className="col-4">
<div className="col-6 col-md-4">
<div
onClick={toggleSideBar}
className="menu-button pointer d-md-block text-left">
Expand All @@ -44,14 +44,14 @@ const Navbar = (props) => {
</svg>
</div>
</div>
<div className="col-4 text-center">
<div className="col-0 col-md-4 d-none d-md-block text-center">
<Link href="/" passHref>
<a className="navbar-logo d-none d-md-block">
<img className="navbar-logo" src="/img/logo.png" />
</a>
</Link>
</div>
<div className="col-4 text-right">
<div className="col-6 col-md-4 text-right">
<div className="d-inline-block pointer">
{viewer?.user ? (
<Dropdown
Expand Down

0 comments on commit edee382

Please sign in to comment.