/**
* DevExtreme (widgets/common/textArea.less)
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
@import (once) "./textBox.less";

.dx-textarea {
    .dx-texteditor-input-container {
        align-items: stretch;
    }

    .dx-texteditor-input {
        resize: none;
        font-family: inherit;
        display: block;
        overflow: auto;
        white-space: pre-wrap;
        margin: 0;
    }

    .dx-texteditor-input-auto-resize {
        overflow-y: hidden;
    }

    .dx-placeholder {
        height: auto;

        &:before {
            white-space: normal;
        }
    }
}
