diff --git a/src/components/Hist.tsx b/src/components/Hist.tsx index ca032ca0de9147ba1e9868e23b54c4ae9a7c731d..66200f23a540f4a31ca4dc43b045ab2cc6361a6b 100644 --- a/src/components/Hist.tsx +++ b/src/components/Hist.tsx @@ -264,7 +264,7 @@ const Hist: FunctionComponent<Props> = ({ </ChartContainer> </ResponsiveContainer> {currentScan && ( - <span className="text-primary text-[14px]"> + <span className="text-[14px] text-primary"> {currentScanRepositoryURL}:{' '} {currentScan.properties.value !== null ? ( <Badge>{currentScan?.properties.value}</Badge> diff --git a/src/components/ui/form.tsx b/src/components/ui/form.tsx index 035c95efb1da5f69b04d664621cd4f22af0a946e..6846106fe5f9da55b44c77377956a0f08947b2b2 100644 --- a/src/components/ui/form.tsx +++ b/src/components/ui/form.tsx @@ -157,7 +157,7 @@ const FormMessage = React.forwardRef< ref={ref} id={formMessageId} className={cn( - 'text-destructive text-[0.8rem] font-medium', + 'text-[0.8rem] font-medium text-destructive', className, )} {...props} diff --git a/src/components/ui/toast.tsx b/src/components/ui/toast.tsx index a163a29ca85c2e5c906c94f4be640dcf0a9d6051..b3534d45696926cc65311ed7d22013559f34d030 100644 --- a/src/components/ui/toast.tsx +++ b/src/components/ui/toast.tsx @@ -60,7 +60,7 @@ const ToastAction = React.forwardRef< <ToastPrimitives.Action ref={ref} className={cn( - 'hover:bg-secondary focus:ring-ring group-[.destructive]:border-muted/40 group-[.destructive]:hover:border-destructive/30 group-[.destructive]:hover:bg-destructive group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-sm font-medium transition-colors focus:outline-none focus:ring-1 disabled:pointer-events-none disabled:opacity-50', + 'hover:bg-secondary focus:ring-ring group-[.destructive]:border-muted/40 inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-sm font-medium transition-colors focus:outline-none focus:ring-1 disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:hover:border-destructive/30 group-[.destructive]:hover:bg-destructive group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive', className, )} {...props}