fix(CommandPalette): missing right padding on input with close button

This commit is contained in:
Benjamin Canac
2023-12-08 15:26:13 +01:00
parent f07968afef
commit ad33b26729
2 changed files with 6 additions and 3 deletions

View File

@@ -13,7 +13,10 @@ export default {
size: 'h-4 w-4',
padding: 'ps-10'
},
closeButton: 'absolute end-4'
closeButton: {
base: 'absolute end-4',
padding: 'pe-10'
}
},
emptyState: {
wrapper: 'flex flex-col items-center justify-center flex-1 px-6 py-14 sm:px-14',