Add padding to main page content (#243)
This commit is contained in:
@@ -20,7 +20,7 @@ function Settings() {
|
|||||||
useSettingsStore();
|
useSettingsStore();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-8 max-w-5xl mx-auto">
|
<div className="flex flex-col gap-8 max-w-5xl mx-auto p-8 pt-0">
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader className="border-b-2">
|
<CardHeader className="border-b-2">
|
||||||
<CardTitle className="text-lg">Settings</CardTitle>
|
<CardTitle className="text-lg">Settings</CardTitle>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ function CreateNewTask() {
|
|||||||
const caseInputId = useId();
|
const caseInputId = useId();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-8 max-w-5xl mx-auto">
|
<div className="flex flex-col gap-8 max-w-5xl mx-auto p-8 pt-0">
|
||||||
<div className="flex gap-4 items-center">
|
<div className="flex gap-4 items-center">
|
||||||
<Label htmlFor={caseInputId} className="whitespace-nowrap">
|
<Label htmlFor={caseInputId} className="whitespace-nowrap">
|
||||||
Select a sample:
|
Select a sample:
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ function TaskDetails() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-8 max-w-5xl mx-auto">
|
<div className="flex flex-col gap-8 max-w-5xl mx-auto p-8 pt-0">
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<Label className="w-32 shrink-0 text-lg">Task ID</Label>
|
<Label className="w-32 shrink-0 text-lg">Task ID</Label>
|
||||||
<Input value={taskId} readOnly />
|
<Input value={taskId} readOnly />
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ function TaskList() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-8 max-w-5xl mx-auto">
|
<div className="flex flex-col gap-8 max-w-5xl mx-auto p-8 pt-0">
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader className="border-b-2">
|
<CardHeader className="border-b-2">
|
||||||
<CardTitle className="text-xl">Running Tasks</CardTitle>
|
<CardTitle className="text-xl">Running Tasks</CardTitle>
|
||||||
|
|||||||
Reference in New Issue
Block a user