<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#files-area{
    width: 30%;
    margin: 0 auto;
}
.file-block{
    border-radius: 10px;
    background-color: rgba(144, 163, 203, 0.2);
    margin: 5px;
    color: initial;
    display: inline-flex;

    font-size:1.3rem;
    &amp; &gt; span.name{
        padding-right: 10px;
        width: max-content;
        display: inline-flex;
        line-height: 1.5;
    }
}
.file-delete{
    display: flex;
    width: 24px;
    color: initial;
    background-color: #6eb4ff00;
    font-size: large;
    justify-content: center;
    margin-right: 3px;
    cursor: pointer;
    &amp;:hover{
        background-color: rgba(144, 163, 203, 0.2);
        border-radius: 10px;
    }
    &amp; &gt; span{
        transform: rotate(45deg);
    }
}


</pre></body></html>