diff options
Diffstat (limited to 'src/components/navigation/Navbar.js')
| -rw-r--r-- | src/components/navigation/Navbar.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/navigation/Navbar.js b/src/components/navigation/Navbar.js index 2358e146..6dfc20b0 100644 --- a/src/components/navigation/Navbar.js +++ b/src/components/navigation/Navbar.js @@ -45,9 +45,9 @@ const LoggedInSectionWithoutRoute = ({location}) => ( ) ; -const Navbar = ({children}) => ( +const Navbar = ({fullWidth, children}) => ( <nav className="navbar fixed-top navbar-expand-lg navbar-light bg-faded" id="navbar"> - <div className="container"> + <div className={fullWidth ? "container-fluid" : "container"}> <button className="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> |
