style: Standardize dialog paddings across Admin SPA

This commit is contained in:
Dwindi Ramadhana
2026-02-28 20:40:34 +07:00
parent 6f23ccdda4
commit 7ff429502d
9 changed files with 104 additions and 104 deletions

View File

@@ -136,7 +136,7 @@ export default function TaxSettings() {
const handleSubmit = (e: React.FormEvent<HTMLFormElement>) => {
e.preventDefault();
const formData = new FormData(e.currentTarget);
const data = {
country: formData.get('country') as string,
state: formData.get('state') as string || '',
@@ -409,7 +409,7 @@ export default function TaxSettings() {
</DialogTitle>
</DialogHeader>
<form onSubmit={handleSubmit}>
<div className="space-y-4 py-4">
<div className="space-y-4 px-6 py-4">
<div>
<Label>{__('Country')}</Label>
<Input