I am facing an issue with a sidebar that is styled using the following css properties:
background:#164272;
position:absolute;
left:0px;
top:70px;
width:250px;
height:100%;
When I use jQuery to display a table that is initially hidden and only shown upon clicking an element, it causes the sidebar's 100% height to break on smaller screens. An image of the problem can be seen below.
What steps should I take to ensure that the sidebar's height remains intact and does not break on smaller screens?