Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function Toast({
{toast.primaryAction && (
<button
onClick={toast.primaryAction.onClick}
className="w-full py-2 rounded-full bg-stone-600 text-white text-sm font-medium duration-150 hover:scale-[1.01] active:scale-[0.99]"
className="w-full py-2 rounded-full bg-stone-800 hover:bg-stone-700 text-white text-sm font-medium border-2 border-stone-600 shadow-[0_4px_14px_rgba(87,83,78,0.4)] transition-all duration-200"
>
{toast.primaryAction.label}
</button>
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src/components/onboarding/shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function OnboardingButton(
return (
<button
{...props}
className="w-fit px-6 py-2.5 rounded-full bg-stone-600 text-white text-sm font-medium duration-150 hover:scale-[1.01] active:scale-[0.99]"
className="w-fit px-6 py-2.5 rounded-full bg-stone-800 hover:bg-stone-700 text-white text-sm font-medium border-2 border-stone-600 shadow-[0_4px_14px_rgba(87,83,78,0.4)] transition-all duration-200"
/>
);
}
Expand Down
Loading