From dec7a55ba50103c80103d8bcb02a1f713b1861e0 Mon Sep 17 00:00:00 2001 From: curben Date: Wed, 7 Nov 2018 10:52:08 +1030 Subject: [PATCH] feat: add border around mobile nav menu --- themes/typing/source/css/typing.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/themes/typing/source/css/typing.css b/themes/typing/source/css/typing.css index 7e4e83a..a1c2940 100644 --- a/themes/typing/source/css/typing.css +++ b/themes/typing/source/css/typing.css @@ -1130,8 +1130,12 @@ pre .javascript .function,pre .keyword { /* display links when menu button is clicked */ /* use grid to display each link in new line */ #menu-toggle:checked + #menu{ - display:grid; - display:-ms-grid + display: grid; + display: -ms-grid; + border: 2px solid #999; + border-radius: 5px; + padding: 5px; + text-align: center } }