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 ExpensesTable from '@/components/pages/expense/ExpensesTable';
const Expense = () => {
return (
<section className='w-full p-4'>
<section className='w-full p-4 sm:p-0'>
<ExpensesTable />
</section>
);
+1 -1
View File
@@ -2,7 +2,7 @@ import MovementTable from '@/components/pages/inventory/movement/MovementTable';
const Movement = () => {
return (
<section className='w-full p-4'>
<section className='w-full p-4 sm:p-0'>
<MovementTable />
</section>
);
+1 -1
View File
@@ -2,7 +2,7 @@ import RecordingTable from '@/components/pages/production/recording/RecordingTab
const Recording = () => {
return (
<section className='w-full p-4'>
<section className='w-full p-4 sm:p-0'>
<RecordingTable />
</section>
);
+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>
);