From 3c4900205cb1e36a714f7863cb70a5ac40d9f8cf Mon Sep 17 00:00:00 2001 From: Brock Whittaker Date: Wed, 15 Nov 2017 16:33:19 -0800 Subject: [PATCH] streams: Fix width bug with stream creation form footer. The footer was a few pixels short and would create a gap in the bottom right hand corner of the streams overlay when the stream creation flow is open. --- 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 51b36c9bbe..5ee63ad025 100644 --- a/static/styles/subscriptions.css +++ b/static/styles/subscriptions.css @@ -744,7 +744,7 @@ form#add_new_subscription { #subscription_overlay #stream-creation .modal-footer { position: absolute; bottom: 0; - width: calc(100% - 30px); + width: calc(100% - 27px); } #stream-creation .stream-creation-body {