style: reduce horizontal padding on fleet dashboards

Add px="lg" (24px) to all Container components:
- FleetDashboard
- FuelPurchasePage
- FuelStatsPage
- MaintenancePage
- FinancialReportsPage
- TrackingPage

Reduces left/right padding from default to 24px,
making better use of horizontal screen space.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
natib21
2026-06-30 14:13:58 +00:00
parent 2e1c720b86
commit ea8198f8a8
6 changed files with 6 additions and 6 deletions

View File

@@ -91,7 +91,7 @@ export function FinancialReportsPage() {
);
return (
<Container size="xl" py="xl">
<Container size="xl" py="xl" px="lg">
<Stack gap="md">
<Card>
<Card.Section p="md" withBorder>

View File

@@ -131,7 +131,7 @@ export function FleetDashboard() {
const fuelPercent = operatingCost > 0 ? Math.round((metrics.totalFuelSpend / operatingCost) * 100) : 0;
return (
<Container size="xl" py="xl">
<Container size="xl" py="xl" px="lg">
<Breadcrumbs items={[{ label: 'Fleet' }, { label: 'Dashboard' }]} />
<Box mb="xl">

View File

@@ -119,7 +119,7 @@ export default function FuelPurchasePage() {
const totalCost = formData.liters * formData.costPerLiter;
return (
<Container size="xl" py="xl">
<Container size="xl" py="xl" px="lg">
<Breadcrumbs items={[{ label: "Fleet" }, { label: "Fuel Management" }, { label: "Record Purchase" }]} />
<Group justify="space-between" mb="lg">

View File

@@ -57,7 +57,7 @@ export default function FuelStatsPage() {
: "—";
return (
<Container size="xl" py="xl">
<Container size="xl" py="xl" px="lg">
<Breadcrumbs items={[{ label: "Fleet" }, { label: "Fuel Management" }, { label: "Statistics" }]} />
<Group justify="space-between" mb="lg">

View File

@@ -87,7 +87,7 @@ export function MaintenancePage() {
};
return (
<Container size="xl" py="xl">
<Container size="xl" py="xl" px="lg">
<Stack gap="md">
<Card>
<Card.Section p="md" withBorder>

View File

@@ -72,7 +72,7 @@ export function TrackingPage() {
});
return (
<Container size="xl" py="xl">
<Container size="xl" py="xl" px="lg">
<Breadcrumbs items={[{ label: 'Fleet' }, { label: 'Vehicle Tracking' }]} />
<Stack gap="xl">