Skip to content

Commit

Permalink
navbar mobile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ch264 committed Apr 30, 2024
1 parent f8c78d7 commit bb5534d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ const Header = (props) => {
<div className={item.isWidthShort ? `row row__short` : `row dropdown-col-menu`}>
{ item.columns.map((col) => (
<div
className={item.columns.length <= 2 ? 'col col-sm-6 col-md-6 dropdown-col' : 'col-sm-7 col-md-4 dropdown-col'}
className={item.columns.length <= 2 ? 'col-sm-12 col-md-6 dropdown-col' : 'col-sm-7 col-md-4 dropdown-col'}
key={col.title}
>
<h6 className="dropdown-header">{col.title}</h6>
Expand Down

0 comments on commit bb5534d

Please sign in to comment.