mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-25 07:45:47 +00:00
refactor(FE): Remove unnecessary padding and margin classes in
components
This commit is contained in:
@@ -2,7 +2,7 @@ import RecordingTable from '@/components/pages/production/recording/RecordingTab
|
|||||||
|
|
||||||
const Recording = () => {
|
const Recording = () => {
|
||||||
return (
|
return (
|
||||||
<section className='w-full overflow-x-hidden'>
|
<section className='w-full'>
|
||||||
<RecordingTable />
|
<RecordingTable />
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -717,7 +717,7 @@ const ExpensesTable = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Table Section */}
|
{/* Table Section */}
|
||||||
<div className='flex flex-col mb-4 -mx-4 px-4'>
|
<div className='flex flex-col mb-4'>
|
||||||
<Table<Expense>
|
<Table<Expense>
|
||||||
data={isResponseSuccess(expenses) ? expenses?.data : []}
|
data={isResponseSuccess(expenses) ? expenses?.data : []}
|
||||||
columns={expensesColumns}
|
columns={expensesColumns}
|
||||||
|
|||||||
@@ -1245,7 +1245,7 @@ const RecordingTable = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Table Section */}
|
{/* Table Section */}
|
||||||
<div className='flex flex-col mb-4 -mx-4 px-4'>
|
<div className='flex flex-col mb-4'>
|
||||||
{isLoading ? (
|
{isLoading ? (
|
||||||
<div className='w-full flex flex-row justify-center items-center p-4'>
|
<div className='w-full flex flex-row justify-center items-center p-4'>
|
||||||
<span className='loading loading-spinner loading-xl' />
|
<span className='loading loading-spinner loading-xl' />
|
||||||
|
|||||||
Reference in New Issue
Block a user