mirror of
https://git.meshkee.com/Meshkee/dashboards.git
synced 2026-08-11 22:30:58 +04:30
Includes business, customer, and super-admin apps with shared packages and production deploy scripts. Co-authored-by: Cursor <cursoragent@cursor.com>
43 lines
754 B
CSS
43 lines
754 B
CSS
.page {
|
|
min-height: 100vh;
|
|
display: grid;
|
|
place-items: center;
|
|
padding: 2rem;
|
|
background: var(--bg-gradient-start);
|
|
}
|
|
|
|
.card {
|
|
max-width: 32rem;
|
|
padding: 2rem;
|
|
border-radius: 1rem;
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
box-shadow: var(--glass-shadow);
|
|
}
|
|
|
|
.title {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.text {
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.hint {
|
|
margin-top: 1rem;
|
|
font-size: 0.9rem;
|
|
color: var(--text-muted);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.hint code {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
font-size: 0.85em;
|
|
background: rgba(0, 0, 0, 0.06);
|
|
padding: 0.1rem 0.35rem;
|
|
border-radius: 0.25rem;
|
|
}
|