/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.
This commit is contained in:
Brock Whittaker 2017-08-28 12:03:43 -07:00 committed by Tim Abbott
parent ecae244898
commit d09db16dcd

View File

@ -1990,7 +1990,7 @@ nav ul li.active::after {
position: sticky;
top: 40px;
margin: auto;
height: 426px;
height: 490px;
z-index: 10;
}