fix(resource-menu): consistent height between 1 result and no results (#4007)

This commit is contained in:
Waleed
2026-04-06 20:49:20 -07:00
committed by GitHub
parent 64c6cd973f
commit 8e11c32965
2 changed files with 2 additions and 2 deletions

View File

@@ -216,7 +216,7 @@ export function AddResourceDropdown({
)
})
) : (
<div className='px-2 py-[5px] text-center font-medium text-[var(--text-tertiary)] text-caption'>
<div className='px-2 py-1.5 text-center font-medium text-[var(--text-tertiary)] text-caption'>
No results
</div>
)

View File

@@ -183,7 +183,7 @@ export const PlusMenuDropdown = React.memo(
)
})
) : (
<div className='px-2 py-[5px] text-center font-medium text-[12px] text-[var(--text-tertiary)]'>
<div className='px-2 py-1.5 text-center font-medium text-[12px] text-[var(--text-tertiary)]'>
No results
</div>
)