Skip to content

Commit c2ecea1

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/vite-6.2.0
2 parents 43a2204 + 339a9ac commit c2ecea1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/pull-request-validation.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ on:
1414
- "*.js"
1515
- "*.ts"
1616
- "*.tsx"
17+
- "package.json"
18+
- "pnpm-lock.yaml"
1719

1820
jobs:
1921
lint:

app/components/progress-bar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function ProgressBar({ showSpinner = false }: ProgressBarProps) {
4040
<div
4141
ref={ref}
4242
className={cn(
43-
"relative h-full w-0 bg-[#0f0f0f] duration-500 ease-in-out",
43+
"relative h-full w-0 bg-primary duration-500 ease-in-out",
4444
transition.state === "idle" &&
4545
(animationComplete
4646
? "transition-none"
@@ -49,7 +49,7 @@ function ProgressBar({ showSpinner = false }: ProgressBarProps) {
4949
delayedPending && transition.state === "loading" && "w-8/12",
5050
)}
5151
>
52-
<div className="-translate-y-1 absolute right-0 block h-full w-[100px] rotate-[3deg] opacity-100 shadow-[0_0_10px_#0f0f0f,0_0_5px_#0f0f0f]" />
52+
<div className="-translate-y-1 absolute right-0 block h-full w-[100px] rotate-[3deg] opacity-100 shadow-[0_0_10px_var(--primary),0_0_5px_var(--primary)] dark:shadow-[0_0_10px_var(--primary),0_0_5px_var(--primary)]" />
5353
</div>
5454
{delayedPending && showSpinner && (
5555
<div className="absolute top-2 right-2 flex items-center justify-center">

0 commit comments

Comments
 (0)