I wanted to left sidebar and margin line stay in place while someone scrolls down the site . But the sidebar keeps changing it's position here with screen resizing. Any fixes?
@media only screen and (max-width: 550px) {
    .side-bar-icon {
        display: none;
    }
    .side-line {
        position: relative;
        max-width: 36rem;
        border-right: none; !important;
        border-bottom: thick solid #ef4a60;
        padding-bottom: 30px;
        margin-bottom: 50px;
    }
Reference code here
 
    
 
    