.notearea{
    z-index: 5;
    /* white-space: pre-wrap; */
    display: block;
    position: relative;
    overflow: auto;
    overflow-y: scroll;
    border: 0;
    border-radius: 0;
    cursor: auto;
    resize: none;
    outline: none;
    color: #fff;
    padding: 8px 4px;
    font-size: 24px;
    width: 100%;
    height: 100%;
    padding-top: 76px;
    padding-bottom: calc(100vh - 218px); /* Last random number was calc(100vh - 95px); */
    transition: 0.2s;
}
.notearea.SubHeader{
    padding-top: 123px;
}
.notearea.disabled{
    display: none; /* why not display none? */
    visibility: hidden;
    /* cursor: not-allowed;
    background-color: #00000088; */
}
.notearea.borderRadiusRight{
    border-radius: 0 12px 12px 0;
}