Skip to content

Commit ba8ad12

Browse files
committed
update styles
1 parent 9227f07 commit ba8ad12

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

apps/desktop/src/components/left-sidebar/top-area/settings-button.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
DropdownMenuItem,
1313
DropdownMenuTrigger,
1414
} from "@hypr/ui/components/ui/dropdown-menu";
15+
import { cn } from "@hypr/ui/lib/utils";
1516

1617
export function SettingsButton() {
1718
const [open, setOpen] = useState(false);
@@ -42,7 +43,10 @@ export function SettingsButton() {
4243

4344
<DropdownMenuContent align="start" className="w-52 p-0">
4445
<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+
])}
4650
onClick={handleClickPlans}
4751
>
4852
<div className="absolute inset-0 bg-[url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDIwIDAgTCAwIDAgTCAwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4xNSkiIHN0cm9rZS13aWR0aD0iMS41Ii8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+')] opacity-70">

apps/desktop/src/routes/app.plans.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const Route = createFileRoute("/app/plans")({
1111
function Component() {
1212
return (
1313
<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">
1515
<div className="grid grid-cols-2 gap-4">
1616
<PricingCard
1717
title="Local"

0 commit comments

Comments
 (0)