bump max-height to 16 lines in the rich text editors (#10670)

This commit is contained in:
alunturner 2023-04-27 08:37:38 +01:00 committed by GitHub
parent 223892bf0e
commit 70326b98f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,8 +71,8 @@ limitations under the License.
/* while keeping the autocomplete at the top */
/* of the composer. The parent needs to be a flex container for this to work. */
margin: auto 0;
/* max-height at this level so autocomplete doesn't get scrolled too */
max-height: 140px;
/* the line height is $font-22px (set in _Editor.pcss) and we want to display 16 lines */
max-height: calc(16 * $font-22px);
overflow-y: auto;
}
}