mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: resolved border flicker on issue title (#4727)
This commit is contained in:
parent
dee57326a5
commit
a23c528396
@ -108,7 +108,7 @@ export const IssueTitleInput: FC<IssueTitleInputProps> = observer((props) => {
|
||||
className={cn(
|
||||
"block w-full resize-none overflow-hidden rounded border-none bg-transparent px-3 py-0 text-2xl font-medium outline-none ring-0",
|
||||
{
|
||||
"ring-1 ring-red-400 mx-3": title.length === 0,
|
||||
"ring-1 ring-red-400 mx-3": title.length && title.length === 0,
|
||||
},
|
||||
className
|
||||
)}
|
||||
|
Loading…
Reference in New Issue
Block a user