Skip to content

Commit c6445db

Browse files
committed
SBIT-400: fix menu
1 parent 37df420 commit c6445db

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/components/NavBar/AnimatedNavBar/DropdownContainer/dropdown.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@
5858
}
5959

6060
.navbarItemIcon {
61-
width: 28px !important;
62-
height: 28px !important;
61+
width: 100%;
62+
height: 100%;
63+
max-width: 28px;
64+
max-height: 28px;
6365
align-self: center;
6466
margin-right: 5px;
6567

src/components/NavBar/Navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const NavBar = memo(() => {
2828
const navbarButton = navbarData.allStrapiLayout?.nodes[0].navbar?.navButton
2929

3030
return (
31-
<Navbar variant="dark" expand="xl" className="NavBar">
31+
<Navbar variant="dark" expand="xxl" className="NavBar">
3232
<Link to="/" className="NavBar__Logo">
3333
{logoLight && (
3434
<GatsbyImage

0 commit comments

Comments
 (0)