Skip to content

Commit ea687ed

Browse files
committed
Fix loaders styles
1 parent 05a09b8 commit ea687ed

File tree

6 files changed

+310
-301
lines changed

6 files changed

+310
-301
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
auth-libs/web-component/src/hanko-auth.ts

auth-libs/web-component/dist/hanko-auth.esm.js

Lines changed: 294 additions & 292 deletions
Large diffs are not rendered by default.

auth-libs/web-component/dist/hanko-auth.iife.js

Lines changed: 10 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auth-libs/web-component/dist/hanko-auth.umd.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

auth-libs/web-component/src/hanko-auth.styles.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ export const styles = css`
2525
display: flex;
2626
flex-direction: column;
2727
align-items: center;
28+
width: 100%;
2829
gap: var(--hot-spacing-small);
2930
padding: var(--hot-spacing-large);
31+
box-sizing: border-box;
3032
}
3133
3234
.spinner {

frontend/src/pages/LoginPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ function LoginPage() {
251251
{/* Onboarding: Redirecting step */}
252252
{isOnboarding && onboardingStep === "redirecting" && (
253253
<div className="text-center py-8">
254-
<div className="animate-spin rounded-full h-12 w-12 border-4 border-hot-red-600 border-t-transparent mx-auto mb-4"></div>
254+
<div className="animate-spin rounded-full h-12 w-12 border-4 border-hot-red-200 border-t-hot-red-600 mx-auto mb-4"></div>
255255
<p className="text-hot-gray-600">{t("settingUpAccount")}</p>
256256
</div>
257257
)}

0 commit comments

Comments
 (0)