1- import { Button } from "@/components/ui/button" ;
2- import { Card , CardContent } from "@/components/ui/card" ;
3- import { Tabs , TabsList , TabsTrigger , TabsContent } from "@/components/ui/tabs" ;
41import { formatDistance } from "date-fns" ;
52import { UserPlus } from "lucide-react" ;
63import {
@@ -16,6 +13,9 @@ import {
1613 useMatch ,
1714 useNavigate ,
1815} from "react-router-dom" ;
16+ import { Button } from "@/components/ui/button" ;
17+ import { Card , CardContent } from "@/components/ui/card" ;
18+ import { Tabs , TabsList , TabsTrigger , TabsContent } from "@/components/ui/tabs" ;
1919import { ReferenceManyField , SortButton } from "@/components/admin" ;
2020
2121import { ActivityLog } from "../activity/ActivityLog" ;
@@ -54,7 +54,7 @@ const CompanyShowContent = () => {
5454 if ( isPending || ! record ) return null ;
5555
5656 return (
57- < div className = "flex pb-2" >
57+ < div className = "mt-2 flex pb-2 gap-8 " >
5858 < div className = "flex-1" >
5959 < Card >
6060 < CardContent >
@@ -145,7 +145,7 @@ const ContactsIterator = () => {
145145 < RouterLink
146146 to = { `/contacts/${ contact . id } /show` }
147147 state = { { from : location . pathname } }
148- className = "flex items-center justify-between hover:bg-muted py-2 px-4 transition-colors"
148+ className = "flex items-center justify-between hover:bg-muted py-2 transition-colors"
149149 >
150150 < div className = "mr-4" >
151151 < Avatar />
0 commit comments