Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/components/ChatFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export default function ChatFeed({ initialMessage, onClose }: ChatFeedProps) {
width={32}
height={32}
/>
<span className="font-ppneue text-gray-900">Open Operator</span>
<span className="font-ppsupply text-gray-900">Open Operator</span>
</div>
<motion.button
onClick={onClose}
Expand Down
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import posthog from "posthog-js";
const Tooltip = ({ children, text }: { children: React.ReactNode; text: string }) => {
return (
<div className="relative group">
{children}
<span className="absolute hidden group-hover:block w-auto px-3 py-2 min-w-max left-1/2 -translate-x-1/2 translate-y-3 bg-gray-900 text-white text-xs rounded-md font-ppsupply">
<span className="absolute hidden group-hover:block w-auto px-3 py-2 min-w-max left-1/2 -translate-x-1/2 -translate-y-full -mt-1 bg-gray-900 text-white text-xs rounded-md font-ppsupply">
{text}
</span>
{children}
</div>
);
};
Expand Down