refactor(FE): Remove section padding on small+ screens

This commit is contained in:
rstubryan
2026-01-26 13:35:45 +07:00
parent e9238e2bb5
commit 2a03eae8a2
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import PurchaseTable from '@/components/pages/purchase/PurchaseTable';
const Purchase = () => {
return (
<section className='w-full p-4'>
<section className='w-full p-4 sm:p-0'>
<PurchaseTable />
</section>
);