From da1d76a456c775995a158a1fedae2b1b51fab20a Mon Sep 17 00:00:00 2001 From: Anukrati Mehta Date: Wed, 21 Feb 2024 22:56:06 +0530 Subject: [PATCH] Make Header Responsive (#342) * made header responsive * fixed linting errors * fixed media query and trailing space * removed trailing space --- website/src/index.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/website/src/index.css b/website/src/index.css index 3d947a532..ad7689208 100644 --- a/website/src/index.css +++ b/website/src/index.css @@ -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; + } +} \ No newline at end of file