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

pull/4375/head
Joel 2 years ago committed by GitHub
parent 3271e3e803
commit 66c8070da8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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'

@ -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')}

Loading…
Cancel
Save