#editor-drawer {
    position: relative;
    flex-grow: 0;
    border: 0;
    margin: 0;
    padding: 0;
    width: 0px;
    z-index: 10000;
    background: white;
    transition-timing-function: ease-in;
    transition: width 1s;
    display: inline-block;
}

#editor-drawer.show {
    width: 300px;
}


#editor-handle {
    position: absolute;
    top: 20px;
    right: -20px;
    height: 20px;
    width: 20px;
    background: white;
}