There seems to be an issue with adding padding all around a p-dropdown within a p-table
Here is the code snippet:
<td>
<p-dropdown name="country" [options]="countries" [(ngModel)]="applicant.country" placeholder="select country"
(onChange)="getStatebyCountry(applicant.country,$event)" #country="ngModel" required>
</p-dropdown>
</td>
Although it functions correctly, the border of the dropdown appears to be hugging the column walls.
Is there a way to add padding all around the p-dropdown in the p-table?