mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-14 06:57:33 +02:00
🎨 Sort classes (#1750)
This commit is contained in:
parent
af7b0a82d1
commit
dcc41eb0f1
120 changed files with 374 additions and 365 deletions
|
@ -18,7 +18,7 @@ const Steps: React.FunctionComponent<StepsProps> = ({
|
|||
|
||||
return (
|
||||
<div className={cn("inline-flex items-center gap-2.5", className)}>
|
||||
<div className="text-sm font-medium tracking-tight">
|
||||
<div className="font-medium text-sm tracking-tight">
|
||||
{t("stepSummary", {
|
||||
current: current + 1,
|
||||
total,
|
||||
|
@ -33,7 +33,7 @@ const Steps: React.FunctionComponent<StepsProps> = ({
|
|||
className={cn("h-2 w-2 rounded-full transition-all", {
|
||||
"bg-primary-400": i <= current,
|
||||
"bg-gray-300": i > current,
|
||||
"ring-primary-200 animate-pulse ring-4": i === current,
|
||||
"animate-pulse ring-4 ring-primary-200": i === current,
|
||||
})}
|
||||
/>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue