From 92cd85684884749449fc581d94fa7bfb3ccee177 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Sat, 31 Oct 2020 20:39:39 +0530 Subject: [PATCH] subscriptions_overlay: Use 991px as breakpoint for smaller devices. Instead of adjusting the width of settings container at 1130px, we adjust it at 991px which is the standard for smaller screens. Adjusting it 1200px(xl) didn't make sense, so the next reasonable breakpoint was used. --- static/styles/subscriptions.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/styles/subscriptions.css b/static/styles/subscriptions.css index 59cc85049f..db01277c7e 100644 --- a/static/styles/subscriptions.css +++ b/static/styles/subscriptions.css @@ -1087,7 +1087,7 @@ ul.grey-box { } } -@media (max-width: 1130px) { +@media (max-width: $lg-max) { .subscriptions-container { max-width: 95%; }