Commit 124ae8c2 by Tom Christie

Tweak styling for max-height of sidenav

parent e0dddbc5
...@@ -200,11 +200,11 @@ ...@@ -200,11 +200,11 @@
}); });
// Dynamically force sidenav to no higher than browser window // Dynamically force sidenav to no higher than browser window
$('.side-nav').css('max-height', window.innerHeight - 125); $('.side-nav').css('max-height', window.innerHeight - 130);
$(function(){ $(function(){
$(window).resize(function(){ $(window).resize(function(){
$('.side-nav').css('max-height', window.innerHeight - 125); $('.side-nav').css('max-height', window.innerHeight - 130);
}); });
}); });
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment