/*!
 * Jodit Editor (https://xdsoft.net/jodit/)
 * License GNU General Public License version 2 or later;
 * Copyright 2013-2019 Valeriy Chupurnov https://xdsoft.net
 */

@resizer-size: 7px;
.jodit_container {
    min-height: 100px;
    .jodit_workplace {
        display: flex;
        height: auto;
        min-height: 50px;
        overflow: hidden;
    }
}
.jodit_editor_resize {
    position: relative;
    a {
        position: absolute;
        bottom: 0;
        right: 0;
        user-select: none;
        width: 0;
        height: 0;
        overflow: hidden;
        border-width: @resizer-size @resizer-size 0 0;
        border-color: rgba(0, 0, 0, 0) @color-border rgba(0, 0, 0, 0)
            rgba(0, 0, 0, 0);
        border-style: dashed solid dashed dashed;
        cursor: se-resize;
    }
}
