
    .graphList {
    text-align: center;
    float: left;
    width: 64px;
    height: 100px;
    margin-left: 10px;
    margin-top: 10px;
    .graph {
        width: 64px;
        height: 64px;
        border: 2px solid transparent;
        display: flex;
        cursor: pointer;
        justify-content: center;
        .svgGraph>svg {
            width: 100%;
            height: 100%;
        }
        img{
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            align-self: center;
        }
        
    }
    span {
        font-size: 12px;
        word-break: break-word;
    }
    .graph.selectedGallery {
        border-color: #2d89ef;
    }
}
.inline-control{
    display: inline-block;
}