Skip to content
Snippets Groups Projects
TextArea.module.scss 463 B
Newer Older
insert's avatar
insert committed
.container {
    font-size: .875rem;
insert's avatar
insert committed
    line-height: 20px;
    position: relative;
}

.textarea {
    width: 100%;
    white-space: pre-wrap;

    textarea::placeholder {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.hide {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ghost {
    width: 100%;
    white-space: pre-wrap;
    
    top: 0;
    position: absolute;
    visibility: hidden;
}