From d09db16dcd89845dc35b1a2f653ffd60463dfb5e Mon Sep 17 00:00:00 2001 From: Brock Whittaker Date: Mon, 28 Aug 2017 12:03:43 -0700 Subject: [PATCH] /integrations/: Fix sidebar overflowing parent container. The sidebar height was set to shorter than what the sidebar actually was and so it would overflow the parent. By resetting it, it now will not overflow. Fixes: #6315. --- static/styles/landing-page.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/styles/landing-page.css b/static/styles/landing-page.css index 77846d4443..b72fe5272e 100644 --- a/static/styles/landing-page.css +++ b/static/styles/landing-page.css @@ -1990,7 +1990,7 @@ nav ul li.active::after { position: sticky; top: 40px; margin: auto; - height: 426px; + height: 490px; z-index: 10; }