💄 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

@@ -3,7 +3,7 @@ import ChannelsTable from '../../components/table/ChannelsTable';
const File = () => {
return (
<div className="mt-[64px]">
<div className="mt-[64px] px-2">
<ChannelsTable />
</div>
);