From c9a8cc09b2b8fc17005c7418be3e00a3eaae6657 Mon Sep 17 00:00:00 2001 From: William Tran Date: Sun, 30 May 2021 20:25:53 -0400 Subject: [PATCH] Make Nav disappear on mobile --- components/OrganizedContent.module.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/components/OrganizedContent.module.css b/components/OrganizedContent.module.css index 95c8b32f..21ba2910 100644 --- a/components/OrganizedContent.module.css +++ b/components/OrganizedContent.module.css @@ -90,4 +90,10 @@ .footerSection { cursor: pointer; display: flex; -} \ No newline at end of file +} + +@media only screen and (max-width: calc(768rem / 16)) { + .nav { + display: none; + } +}