Skip to content

Commit

Permalink
Make Header Responsive (#342)
Browse files Browse the repository at this point in the history
* made header responsive

* fixed linting errors

* fixed media query and trailing space

* removed trailing space
  • Loading branch information
AnukratiMehta authored Feb 21, 2024
1 parent 498c2cb commit da1d76a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions website/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -430,3 +430,13 @@ nav.breadcrumbs li:last-of-type::after {
background-color: var(--black);
}
}

@media screen and (width >= 600px) and (width <= 900px) {
nav ul {
flex-wrap: wrap;
justify-content: center;
padding-left: 1.5em;
padding-right: 1.5em;
margin-top: 0.5em;
}
}

0 comments on commit da1d76a

Please sign in to comment.