Files
Stirling-PDF/frontend/editor/src/proprietary/auth/ui/AuthShell.module.css
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
782 B
CSS
Raw Normal View History

2025-10-24 10:49:52 +01:00
.authContainer {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: var(--auth-bg-color);
2025-10-24 10:49:52 +01:00
padding: 1.5rem 1.5rem 0;
2026-04-17 10:50:16 +01:00
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
2025-10-24 10:49:52 +01:00
overflow: auto;
}
.authCard {
width: min(26rem, 96vw);
max-height: 96vh;
padding: 2.5rem 2rem;
display: flex;
justify-content: center;
2025-10-24 10:49:52 +01:00
background-color: var(--auth-card-bg);
border-radius: 1.25rem;
box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.12);
overflow-y: auto;
overflow-x: hidden;
2025-10-24 10:49:52 +01:00
}
.authCard::-webkit-scrollbar {
2025-10-24 10:49:52 +01:00
display: none; /* WebKit browsers (Chrome, Safari, Edge) */
}
.authContent {
max-width: 22rem; /* 352px */
2025-10-24 10:49:52 +01:00
width: 100%;
}