From fb0b38fb7152deb76f80eda1adb1ca650a85f46b Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Tue, 2 Feb 2021 20:57:08 -0800 Subject: [PATCH] fix: Mobile menu toggle button appearing in print media, closes #377 --- app/components/Layout.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/components/Layout.js b/app/components/Layout.js index 8db6aeb7..4c96b26a 100644 --- a/app/components/Layout.js +++ b/app/components/Layout.js @@ -188,6 +188,10 @@ const MobileMenuButton = styled(Button)` ${breakpoint("tablet")` display: none; `}; + + @media print { + display: none; + } `; const Content = styled(Flex)`