#js-debugger {
    height: 50%;
    background-color: black;
    border-top: 2px solid;
}







.resize-bar {
    height: 12px;
    background: #4a4a4a;
    cursor: ns-resize;
    position: relative;
    user-select: none;
}

.resize-bar:hover {
    background: #6a6a6a;
}

.resize-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: #888;
    border-radius: 1px;
}



#js-debugger {
    height:100%;
    background-color: black;
    overflow-y: auto;
}


