fix: Set max height to 50vh for better viewing for larger screens. (#3330)

Feature: Set max height to 50vh for better viewing for larger screens.
This commit is contained in:
Jerwin Arnado
2024-05-07 23:19:20 +08:00
committed by GitHub
parent d355e2c631
commit a9caecf479

View File

@@ -185,7 +185,7 @@ const Editor = forwardRef(function Editor(props: Props, ref: React.ForwardedRef<
return (
<div
className={clsx(
"flex flex-col justify-start items-start relative w-full h-auto max-h-[256px] bg-inherit dark:text-gray-300",
"flex flex-col justify-start items-start relative w-full h-auto max-h-[50vh] bg-inherit dark:text-gray-300",
className,
)}
>