From 1f4a09962c716783d667de1450a7d71591f5121e Mon Sep 17 00:00:00 2001 From: Patrick Yeo Date: Mon, 27 Jan 2020 14:09:41 -0800 Subject: [PATCH] fix(clayui.com): Page navigation should be properly positioned in IE11 fixes #2784, fixes #2798 --- clayui.com/src/styles/_sidebar.scss | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/clayui.com/src/styles/_sidebar.scss b/clayui.com/src/styles/_sidebar.scss index 1d072eab14..e4fce73ca5 100644 --- a/clayui.com/src/styles/_sidebar.scss +++ b/clayui.com/src/styles/_sidebar.scss @@ -2,14 +2,12 @@ display: flex; flex-direction: column; min-height: 100vh; + padding-top: 81px; width: 100%; @media (min-width: $screen-md) { - width: calc(100% - 320px); - } - - @media (min-width: $screen-lg) { - padding: 0 0 0 2rem; + padding-left: 332px; + padding-top: 0; } .clay-site-container { @@ -23,8 +21,8 @@ } .sidenav-sticky.sidenav-menu-slider { - position: sticky; - top: 0; + position: fixed; + top: 0; width: 100%; z-index: 11;