Skip to content

Commit

Permalink
Theme
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusab committed Dec 2, 2023
1 parent 3f901cc commit 62660bd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions apps/dashboard/src/components/onboarding-step.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ export function OnboardingStep({ active, done }) {
return (
<div
className={cn(
"absolute -left-[66px] top-7 z-10 block h-5 w-5 rounded-full bg-background",
"absolute -left-[66px] top-7 z-10 block h-5 w-5 rounded-full bg-background"
)}
>
<div
className={cn(
"ml-1 mt-1 h-3 w-3 rounded-full border-2 transition duration-200 ease-in-out border-white/30 items-center flex justify-center",
active && "border-white",
done && "border-white",
"ml-1 mt-1 h-3 w-3 rounded-full border-2 transition duration-200 ease-in-out border-primary/30 items-center flex justify-center",
active && "border-primary",
done && "border-primary"
)}
>
{done && <div className="w-1 h-1 bg-white rounded-full" />}
{done && <div className="w-1 h-1 bg-primary rounded-full" />}
</div>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/src/components/signup-apps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function SignupApps() {
<button
disabled
type="button"
className="relative rounded-lg overflow-hidden p-[1px]"
className="relative rounded-lg overflow-hidden border dark:border-none dark:p-[1px]"
style={{
background:
"linear-gradient(-45deg, rgba(235,248,255,.18) 0%, #848f9c 50%, rgba(235,248,255,.18) 100%)",
Expand Down
4 changes: 3 additions & 1 deletion packages/ui/src/components/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ const DialogContent = React.forwardRef<
}}
{...props}
>
<div className="bg-background p-2 rounded-[15px]">{children}</div>
<div className="bg-background p-2 rounded-lg dark:rounded-[15px]">
{children}
</div>
<DialogPrimitive.Close className="absolute right-6 top-6 opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
<Cross2Icon className="h-4 w-4" />
<span className="sr-only">Close</span>
Expand Down

0 comments on commit 62660bd

Please sign in to comment.