Skip to content

Commit

Permalink
fix: hide onboarding button on mobile (#1460)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jittojoyes98 authored Aug 1, 2023
1 parent 31a9a6a commit f63f240
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import ProgressPie from "components/atoms/ProgressPie/progress-pie";

const OnboardingButton: React.FC = () => {
return (
<button className="flex items-center gap-2 border border-light-orange-8 py-1 px-1 pr-3 rounded-lg">
<button className="hidden items-center gap-2 border border-light-orange-8 py-1 px-1 pr-3 rounded-lg md:flex">
<ProgressPie percentage={66} />
<Text className="text-sm !text-light-slate-12 ">
<Link href="/start">Complete the onboarding</Link>
Expand Down

0 comments on commit f63f240

Please sign in to comment.