Skip to content

Commit f5a6407

Browse files
style(ui): Enhance button and modal layout spacing
1 parent f0c4c94 commit f5a6407

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/desktop/src/components/devtool/trial-begin-modal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function TrialBeginModal() {
7979
</p>
8080
</div>
8181

82-
<div className="flex flex-wrap justify-center gap-3 max-w-md">
82+
<div className="flex flex-wrap justify-center gap-2 max-w-md">
8383
{[
8484
{ label: "Pro AI models", icon: Sparkle },
8585
{ label: "Cloud sync", icon: Cloud },
@@ -93,7 +93,7 @@ export function TrialBeginModal() {
9393
className={cn([
9494
"px-4 h-8 flex items-center text-sm rounded-full",
9595
"bg-gradient-to-b from-white to-stone-50 border border-neutral-300 text-neutral-700",
96-
"shadow-sm",
96+
"shadow-sm hover:shadow-md hover:scale-[102%] transition-all",
9797
Icon && "gap-2",
9898
])}
9999
>

apps/desktop/src/components/devtool/trial-expired-modal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export function TrialExpiredModal() {
8484
</p>
8585
</div>
8686

87-
<div className="flex flex-wrap justify-center gap-3 max-w-md">
87+
<div className="flex flex-wrap justify-center gap-2 max-w-md">
8888
{[
8989
{ label: "Pro AI models", icon: Sparkle },
9090
{ label: "Cloud sync", icon: Cloud },
@@ -98,7 +98,7 @@ export function TrialExpiredModal() {
9898
className={cn([
9999
"px-4 h-8 flex items-center text-sm rounded-full",
100100
"bg-gradient-to-b from-white to-stone-50 border border-neutral-300 text-neutral-700",
101-
"shadow-sm",
101+
"shadow-sm hover:shadow-md hover:scale-[102%] transition-all",
102102
Icon && "gap-2",
103103
])}
104104
>

0 commit comments

Comments
 (0)