We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb829ab commit 9a19e03Copy full SHA for 9a19e03
apps/web/client/src/app/_components/top-bar/github.tsx
@@ -1,7 +1,6 @@
1
'use client';
2
3
import { Icons } from '@onlook/ui/icons';
4
-import Link from 'next/link';
5
import { useEffect, useState } from 'react';
6
7
const DEFAULT_STAR_COUNT = 20550;
@@ -59,7 +58,7 @@ export function GitHubButton() {
59
58
return (
60
<a href="https://github.com/onlook-dev/onlook" className="flex items-center gap-1.5 text-small hover:opacity-80" target="_blank" rel="noopener noreferrer">
61
<Icons.GitHubLogo className="h-5 w-5" />
62
- <span className="transition-all duration-300">{formatted}</span>
+ <span className="transition-all duration-300 hidden sm:block">{formatted}</span>
63
</a>
64
);
65
}
0 commit comments