mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-09 11:13:03 +00:00
fixed weird spacing issue
This commit is contained in:
@@ -7,7 +7,7 @@ import {
|
|||||||
Mail,
|
Mail,
|
||||||
Notes,
|
Notes,
|
||||||
} from "@nsmr/pixelart-react";
|
} from "@nsmr/pixelart-react";
|
||||||
import { useEffect, useState } from "react";
|
import { Fragment, useEffect, useState } from "react";
|
||||||
import { Link, Route, Routes, useNavigate, useParams } from "react-router-dom";
|
import { Link, Route, Routes, useNavigate, useParams } from "react-router-dom";
|
||||||
import { AskAI } from "@/components/ask-ai";
|
import { AskAI } from "@/components/ask-ai";
|
||||||
import { ProjectListItem } from "@/components/ProjectListItem";
|
import { ProjectListItem } from "@/components/ProjectListItem";
|
||||||
@@ -466,7 +466,7 @@ function Home() {
|
|||||||
<TabsContent value={homeTabs[1]} className="relative z-10">
|
<TabsContent value={homeTabs[1]} className="relative z-10">
|
||||||
<div className="-mt-[1px] grid grid-cols-1">
|
<div className="-mt-[1px] grid grid-cols-1">
|
||||||
{locations.map((location, index) => (
|
{locations.map((location, index) => (
|
||||||
<div key={location.id}>
|
<Fragment key={location.id}>
|
||||||
<Button
|
<Button
|
||||||
className={cn(
|
className={cn(
|
||||||
"text-sm border cursor-pointer hover:border-accent justify-start w-full",
|
"text-sm border cursor-pointer hover:border-accent justify-start w-full",
|
||||||
@@ -599,7 +599,7 @@ function Home() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</Fragment>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</TabsContent>
|
</TabsContent>
|
||||||
|
|||||||
Reference in New Issue
Block a user