diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx index 37be9c6..9f4d118 100644 --- a/app/components/Footer.tsx +++ b/app/components/Footer.tsx @@ -1,5 +1,6 @@ import { cn } from '~/utils/cn'; import Link from '~/components/Link'; +import Tooltip from '~/components/Tooltip'; declare global { const __VERSION__: string; @@ -33,7 +34,12 @@ export default function Footer({ url, debug }: FooterProps) {

Version: {__VERSION__} {' | '} - Connecting to {url} {debug && '(Debug mode enabled)'} + Connecting to + {' '} + + {url} + + {debug && ' (Debug mode enabled)'}

); diff --git a/tailwind.config.ts b/tailwind.config.ts index 965ab03..6297582 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -18,6 +18,9 @@ export default { }, }, extend: { + blur: { + xs: '2px', + }, height: { editor: 'calc(100vh - 20rem)', },