fix: blur footer URL for screenshots
This commit is contained in:
parent
69783f0d05
commit
b060700dfe
@ -1,5 +1,6 @@
|
|||||||
import { cn } from '~/utils/cn';
|
import { cn } from '~/utils/cn';
|
||||||
import Link from '~/components/Link';
|
import Link from '~/components/Link';
|
||||||
|
import Tooltip from '~/components/Tooltip';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
const __VERSION__: string;
|
const __VERSION__: string;
|
||||||
@ -33,7 +34,12 @@ export default function Footer({ url, debug }: FooterProps) {
|
|||||||
<p className="container text-xs opacity-75">
|
<p className="container text-xs opacity-75">
|
||||||
Version: {__VERSION__}
|
Version: {__VERSION__}
|
||||||
{' | '}
|
{' | '}
|
||||||
Connecting to <strong>{url}</strong> {debug && '(Debug mode enabled)'}
|
Connecting to
|
||||||
|
{' '}
|
||||||
|
<strong className="blur-xs hover:blur-none">
|
||||||
|
{url}
|
||||||
|
</strong>
|
||||||
|
{debug && ' (Debug mode enabled)'}
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -18,6 +18,9 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
extend: {
|
extend: {
|
||||||
|
blur: {
|
||||||
|
xs: '2px',
|
||||||
|
},
|
||||||
height: {
|
height: {
|
||||||
editor: 'calc(100vh - 20rem)',
|
editor: 'calc(100vh - 20rem)',
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user