File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import {
12
12
DropdownMenuItem ,
13
13
DropdownMenuTrigger ,
14
14
} from "@hypr/ui/components/ui/dropdown-menu" ;
15
+ import { cn } from "@hypr/ui/lib/utils" ;
15
16
16
17
export function SettingsButton ( ) {
17
18
const [ open , setOpen ] = useState ( false ) ;
@@ -42,7 +43,10 @@ export function SettingsButton() {
42
43
43
44
< DropdownMenuContent align = "start" className = "w-52 p-0" >
44
45
< div
45
- className = "px-2 py-3 bg-gradient-to-r from-gray-800 to-gray-900 rounded-t-md relative overflow-hidden cursor-pointer"
46
+ className = { cn ( [
47
+ "px-2 py-3 bg-gradient-to-r rounded-t-md relative overflow-hidden cursor-pointer" ,
48
+ "from-gray-800 to-gray-900 hover:from-gray-700 hover:to-gray-800" ,
49
+ ] ) }
46
50
onClick = { handleClickPlans }
47
51
>
48
52
< div className = "absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDIwIDAgTCAwIDAgTCAwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4xNSkiIHN0cm9rZS13aWR0aD0iMS41Ii8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+')] opacity-70" >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const Route = createFileRoute("/app/plans")({
11
11
function Component ( ) {
12
12
return (
13
13
< div className = "flex h-full overflow-hidden bg-gradient-to-b from-background to-background/80" >
14
- < main className = "container mx-auto pb-16 px-4 max-w-5xl overflow-y-auto scrollbar-none " >
14
+ < main className = "container mx-auto pb-16 px-4 max-w-5xl overflow-hidden " >
15
15
< div className = "grid grid-cols-2 gap-4" >
16
16
< PricingCard
17
17
title = "Local"
You can’t perform that action at this time.
0 commit comments