File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,9 @@ export function CheckingConnectionIcon({ className }: { className?: string }) {
65
65
d = "M18 6.5L6.00001 6.5C5.72387 6.5 5.50001 6.72386 5.50001 7L5.50001 15C5.50001 15.2761 5.72387 15.5 6.00001 15.5L18 15.5C18.2762 15.5 18.5 15.2761 18.5 15V7C18.5 6.72386 18.2762 6.5 18 6.5ZM6.00001 5C4.89545 5 4.00001 5.89543 4.00001 7L4.00001 15C4.00001 16.1046 4.89545 17 6.00001 17L18 17C19.1046 17 20 16.1046 20 15V7C20 5.89543 19.1046 5 18 5L6.00001 5Z"
66
66
fill = "#878C99"
67
67
/>
68
+ < circle cx = "9" cy = "11" r = "1" fill = "#878C99" />
69
+ < circle cx = "12" cy = "11" r = "1" fill = "#878C99" />
70
+ < circle cx = "15" cy = "11" r = "1" fill = "#878C99" />
68
71
</ svg >
69
72
) ;
70
73
}
Original file line number Diff line number Diff line change 1
1
import { EnvelopeIcon } from "@heroicons/react/20/solid" ;
2
2
import type { LoaderFunctionArgs , MetaFunction } from "@remix-run/node" ;
3
3
import { Form } from "@remix-run/react" ;
4
- import { GitHubDarkIcon } from "@trigger.dev/companyicons" ;
4
+ import { GitHubLightIcon } from "@trigger.dev/companyicons" ;
5
5
import { redirect , typedjson , useTypedLoaderData } from "remix-typedjson" ;
6
6
import { LoginPageLayout } from "~/components/LoginPageLayout" ;
7
7
import { Button , LinkButton } from "~/components/primitives/Buttons" ;
@@ -89,13 +89,13 @@ export default function LoginPage() {
89
89
fullWidth
90
90
data-action = "continue with github"
91
91
>
92
- < GitHubDarkIcon className = { "mr-2 size-5" } />
93
- < span className = "text-charcoal-900 " > Continue with GitHub</ span >
92
+ < GitHubLightIcon className = { "mr-2 size-5" } />
93
+ < span className = "text-text-bright " > Continue with GitHub</ span >
94
94
</ Button >
95
95
) }
96
96
< LinkButton
97
97
to = "/login/magic"
98
- variant = "tertiary /extra-large"
98
+ variant = "secondary /extra-large"
99
99
fullWidth
100
100
data-action = "continue with email"
101
101
className = "text-text-bright"
Original file line number Diff line number Diff line change @@ -175,14 +175,14 @@ export default function LoginMagicLinkPage() {
175
175
data-action = "send a magic link"
176
176
>
177
177
{ isLoading ? (
178
- < Spinner className = "mr-2 size-5 text-background-dimmed " color = "dark " />
178
+ < Spinner className = "mr-2 size-5" color = "white " />
179
179
) : (
180
- < EnvelopeIcon className = "mr-2 size-5 text-background-dimmed " />
180
+ < EnvelopeIcon className = "mr-2 size-5 text-text-bright " />
181
181
) }
182
182
{ isLoading ? (
183
- < span className = "text-background-dimmed " > Sending…</ span >
183
+ < span className = "text-text-bright " > Sending…</ span >
184
184
) : (
185
- < span className = "text-background-dimmed " > Send a magic link</ span >
185
+ < span className = "text-text-bright " > Send a magic link</ span >
186
186
) }
187
187
</ Button >
188
188
{ magicLinkError && < FormError > { magicLinkError } </ FormError > }
You can’t perform that action at this time.
0 commit comments