Skip to content

Commit a9790e3

Browse files
committed
refactor: adjust margin for layout consistency in multiple route components
1 parent f33f557 commit a9790e3

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

src/routes/$chainSlug/_layout/address/$addressAddress.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function AddressRoute() {
126126

127127
return (
128128
<div className="mt-8 flex flex-col gap-6">
129-
<div className="flex flex-col justify-between lg:flex-row">
129+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
130130
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
131131
<div className="space-y-2">
132132
<h1 className="flex items-center gap-2 font-sans text-2xl font-extrabold">

src/routes/$chainSlug/_layout/app/$appAddress.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function AppsRoute() {
7979

8080
return (
8181
<div className="mt-8 flex flex-col gap-6">
82-
<div className="flex flex-col justify-between lg:flex-row">
82+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
8383
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
8484
<div className="space-y-2">
8585
<h1 className="flex items-center gap-2 text-2xl font-extrabold">

src/routes/$chainSlug/_layout/apps.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function AppsRoute() {
8080

8181
return (
8282
<div className="mt-8 grid gap-6">
83-
<div className="flex flex-col justify-between lg:flex-row">
83+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
8484
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
8585
<div className="space-y-2">
8686
<h1 className="flex items-center gap-2 font-sans text-2xl font-extrabold">

src/routes/$chainSlug/_layout/dataset/$datasetAddress.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function DatasetsRoute() {
114114

115115
return (
116116
<div className="mt-8 flex flex-col gap-6">
117-
<div className="flex flex-col justify-between lg:flex-row">
117+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
118118
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
119119
<div className="space-y-2">
120120
<h1 className="flex items-center gap-2 text-2xl font-extrabold">

src/routes/$chainSlug/_layout/datasets.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ function DatasetsRoute() {
265265

266266
return (
267267
<div className="mt-8 grid gap-6">
268-
<div className="flex flex-col justify-between lg:flex-row">
268+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
269269
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
270270
<div className="space-y-2">
271271
<h1 className="flex items-center gap-2 font-sans text-2xl font-extrabold">

src/routes/$chainSlug/_layout/deal/$dealId.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function DealsRoute() {
8585

8686
return (
8787
<div className="mt-8 flex flex-col gap-6">
88-
<div className="flex flex-col justify-between lg:flex-row">
88+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
8989
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
9090
<div className="space-y-2">
9191
<h1 className="flex items-center gap-2 font-sans text-2xl font-extrabold">

src/routes/$chainSlug/_layout/deals.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function DealsRoute() {
8080

8181
return (
8282
<div className="mt-8 grid gap-6">
83-
<div className="flex flex-col justify-between lg:flex-row">
83+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
8484
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
8585
<div className="space-y-2">
8686
<h1 className="flex items-center gap-2 font-sans text-2xl font-extrabold">

src/routes/$chainSlug/_layout/task/$taskId.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function TasksRoute() {
7777

7878
return (
7979
<div className="mt-8 flex flex-col gap-6">
80-
<div className="flex flex-col justify-between lg:flex-row">
80+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
8181
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
8282
<div className="space-y-2">
8383
<h1 className="flex items-center gap-2 font-sans text-2xl font-extrabold">

src/routes/$chainSlug/_layout/tasks.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function TasksRoute() {
8080

8181
return (
8282
<div className="mt-8 grid gap-6">
83-
<div className="flex flex-col justify-between lg:flex-row">
83+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
8484
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
8585
<div className="space-y-2">
8686
<h1 className="flex items-center gap-2 font-sans text-2xl font-extrabold">

src/routes/$chainSlug/_layout/tx/$txHash.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function TransactionsRoute() {
9595

9696
return (
9797
<div className="mt-8 flex flex-col gap-6">
98-
<div className="flex flex-col justify-between lg:flex-row">
98+
<div className="mt-6 flex flex-col justify-between lg:flex-row">
9999
<SearcherBar className="py-6 lg:order-last lg:mr-0 lg:max-w-md lg:py-0 xl:max-w-xl" />
100100
<div className="space-y-2">
101101
<h1 className="flex items-center gap-2 font-sans text-2xl font-extrabold">

0 commit comments

Comments
 (0)