Here is the current layout of my sidebar:
https://i.sstatic.net/c1sy6.png
I want it to always occupy full height, how can I achieve this?
I've tried using height: 100%, but it doesn't seem to work. Here is my CSS code:
#sidebar {
/* Make sure to include all previously mentioned styles here */
min-width: 250px;
max-width: 250px;
min-height: 100vh;
/*background color: #7386D5; */
background-color: rgb(31, 40, 55);
color: #fff;
transition: all 0.3s;
float: left;
height : 100%;
}