From b14d88ab4a6e08a2e195dfaf7a6bd628f5ff2acd Mon Sep 17 00:00:00 2001 From: rawleyIfowler Date: Sat, 16 Apr 2022 15:58:31 -0500 Subject: [PATCH] added media query for nav bar --- static/index.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/index.css b/static/index.css index 832e391..16f2811 100644 --- a/static/index.css +++ b/static/index.css @@ -109,6 +109,7 @@ a:hover:after { .nav-item { margin-right: 12px; font-size: 1.5em; + display: block; } .content-wrapper { @@ -196,3 +197,9 @@ code { color: #50fa7b; } } + +@media only screen and (max-width: 576px) { + .nav-bar { + flex-direction: column; + } +}