💄 style(layout): add horizontal padding to top-offset divs for consistent spacing

Replaced every instance of
<div className="mt-[64px]">
with
<div className="mt-[64px] px-2">
to provide uniform horizontal padding across pages. No functional changes—visual layout improvement only.
This commit is contained in:
t0ng7u
2025-07-16 03:42:19 +08:00
parent 48afa821e4
commit 8b0334309b
13 changed files with 13 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ import React from 'react';
import TaskLogsTable from '../../components/table/TaskLogsTable.js';
const Task = () => (
<div className="mt-[64px]">
<div className="mt-[64px] px-2">
<TaskLogsTable />
</div>
);