changing padding to py-0 from py-1 for default buttons (#3800)

This commit is contained in:
michalspeckle
2025-01-16 13:58:10 +01:00
committed by GitHub
parent 67ecab2569
commit f83023bde1
@@ -224,9 +224,9 @@ const paddingClasses = computed(() => {
case 'base':
default:
if (hideText) return 'w-8'
if (hasIconLeft) return 'py-1 pr-4 pl-2'
if (hasIconRight) return 'py-1 pl-4 pr-2'
return 'px-4 py-1'
if (hasIconLeft) return 'py-0 pr-4 pl-2'
if (hasIconRight) return 'py-0 pl-4 pr-2'
return 'px-4 py-0'
}
})