From d1d7c959e581ea36d98d9d2b0801c2d43db37e43 Mon Sep 17 00:00:00 2001 From: Nate Kelley Date: Thu, 21 Aug 2025 16:18:27 -0600 Subject: [PATCH] Add padding --- apps/web/src/components/ui/report/Editor.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/src/components/ui/report/Editor.tsx b/apps/web/src/components/ui/report/Editor.tsx index 948f39b7a..b9a3aef2b 100644 --- a/apps/web/src/components/ui/report/Editor.tsx +++ b/apps/web/src/components/ui/report/Editor.tsx @@ -12,7 +12,7 @@ const editorVariants = cva( cn( 'group/editor', 'relative w-full cursor-text overflow-x-visible break-words whitespace-pre-wrap select-text', - 'rounded-md ring-offset-background focus-visible:outline-none', + 'ring-offset-background focus-visible:outline-none', 'placeholder:text-muted-foreground/80 **:data-slate-placeholder:!top-1/2 **:data-slate-placeholder:-translate-y-1/2 **:data-slate-placeholder:text-muted-foreground/80 **:data-slate-placeholder:opacity-100!', '[&_strong]:font-bold' ), @@ -30,8 +30,8 @@ const editorVariants = cva( variant: { ai: 'w-full px-0 text-base md:text-sm', comment: cn('rounded-none border-none bg-transparent text-sm'), - default: 'size-full px-16 pt-4 pb-72 text-base sm:px-[max(64px,calc(50%-350px))]', - fullWidth: 'size-full px-16 pt-4 pb-72 text-base sm:px-24', + default: 'px-16 pt-4 pb-72 text-base sm:px-[max(64px,calc(50%-350px))]', + fullWidth: 'px-16 pt-4 pb-72 text-base sm:px-24', none: '' } }