File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 77 CardTitle ,
88} from "@/components/primitives/card" ;
99import { pageHints } from "@/data/pageHints" ;
10- import { X , HelpCircle } from "lucide-react" ;
10+ import { X } from "lucide-react" ;
1111import { cn } from "@/lib/utils" ;
1212import { Kicker } from "@/components/Kicker" ;
1313import { Modal } from "@/components/Modal" ;
@@ -26,18 +26,20 @@ export const PageHint: React.FC<PageHintProps> = ({ pageId, className }) => {
2626 return (
2727 < div
2828 className = { cn (
29- "fixed top-4 right-4 z-40 sm:top-6 sm:right-6 md:right-8 " ,
29+ "fixed top-4 right-1 z-40 sm:top-6 sm:right-2 md:right-3 " ,
3030 className ,
3131 ) }
3232 >
3333 < Button
3434 variant = "ghost"
3535 size = "sm"
36- className = "h-10 w-10 rounded-full border border-[var(--pagehint-dim )] bg-[var(--pagehint)] text-[var(--pagehint-foreground)] shadow-[var(--shadow-pagehint)] hover:bg-[var(--pagehint-hover)] hover:text-[var(--pagehint-foreground)] focus-visible:ring-[var(--pagehint-dim)]"
36+ className = "h-10 w-10 rounded-full border border-[color: var(--pagehint)] bg-[var(--pagehint)] text-[var(--pagehint-foreground)] shadow-[var(--shadow-pagehint)] hover:bg-[var(--pagehint-hover)] hover:text-[var(--pagehint-foreground)] focus-visible:ring-[var(--pagehint-dim)]"
3737 onClick = { ( ) => setOpen ( true ) }
3838 aria-label = "Open page hint"
3939 >
40- < HelpCircle className = "h-7 w-7" />
40+ < span className = "text-3xl leading-none font-bold" aria-hidden = "true" >
41+ ?
42+ </ span >
4143 </ Button >
4244
4345 < Modal
You can’t perform that action at this time.
0 commit comments