From 39110c6b1b8741f24b830bb363531a58a36eeaa9 Mon Sep 17 00:00:00 2001 From: Steffen van Bergerem Date: Thu, 10 Aug 2017 15:28:39 +0200 Subject: [PATCH] Use full width for notification dropdown on small devices --- app/assets/stylesheets/header.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/header.scss b/app/assets/stylesheets/header.scss index 1bff67918..9bd9df45a 100644 --- a/app/assets/stylesheets/header.scss +++ b/app/assets/stylesheets/header.scss @@ -247,4 +247,12 @@ } } } + + @media (max-width: $screen-xs-max) { + .nav-badges .dropdown-menu { + position: fixed; + top: $navbar-height; + width: 100%; + } + } }