fix: Jinja switch not aligned in vertical direction (#4374)

This commit is contained in:
Joel 2024-05-14 16:29:41 +08:00 committed by GitHub
parent 3271e3e803
commit 66c8070da8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ const Editor: FC<Props> = ({
}
hideArrow
>
<div className={cn(editionType === EditionType.jinja2 && 'border-black/5 bg-white', 'mb-1 flex h-[22px] items-center px-1.5 rounded-[5px] border border-transparent hover:border-black/5 space-x-0.5')}>
<div className={cn(editionType === EditionType.jinja2 && 'border-black/5 bg-white', 'flex h-[22px] items-center px-1.5 rounded-[5px] border border-transparent hover:border-black/5 space-x-0.5')}>
<Jinja className='w-6 h-3 text-gray-300' />
<Switch
size='sm'

View File

@ -167,7 +167,7 @@ const ConfigPrompt: FC<Props> = ({
return true
})()
return (
<div key={item.id} className='relative group'>
<div key={item.id || index} className='relative group'>
{canDrag && <DragHandle className='group-hover:block hidden absolute left-[-14px] top-2 w-3.5 h-3.5 text-gray-400' />}
<ConfigPromptItem
className={cn(canDrag && 'handle')}