From 5c1cdeb806e2b7ddc68bfcf2d8814fbdeb2284e2 Mon Sep 17 00:00:00 2001 From: nicholas antonov Date: Tue, 1 May 2018 20:42:52 -0400 Subject: [PATCH] Hide login button on extremely small screens --- static/scss/header.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/scss/header.scss b/static/scss/header.scss index 31b33772..0ceb74b0 100644 --- a/static/scss/header.scss +++ b/static/scss/header.scss @@ -117,3 +117,9 @@ order: 2; } } + +@include breakpoint(348px down) { + #header-login { + display: none; + } +}