From 03f9a89ffe13fb886f06fff36446dd163cc86ba7 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:29:50 +0300 Subject: [PATCH] Limit vertical size and add resize handles to AF [contenteditable]s --- public/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/style.css b/public/style.css index 0c8b4abf1..30a04a51f 100644 --- a/public/style.css +++ b/public/style.css @@ -5455,4 +5455,8 @@ body:not(.movingUI) .drawer-content.maximized { #advanced-formatting-button div[contenteditable] { overflow-wrap: anywhere; + max-height: 50vh; + max-height: 50dvh; + resize: vertical; + overflow: auto; }