Files
lux_fiscal/frontend/src/pages/DashboardPage.css
T
lauadminandClaude Sonnet 5 2664cb8213 Initial commit: backend scaffold, auth, frontend login
- FastAPI + SQLAlchemy async + Alembic + Postgres backend
- Auth: JWT access + rotating refresh tokens, argon2, roles, audit log
- React 19 + Vite frontend: login page, protected route, auth context
- Docker Compose: postgres, redis, migrate, api, worker (placeholder), frontend/nginx

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-22 15:07:15 +03:00

72 lines
1.3 KiB
CSS

.dashboard-shell {
min-height: 100svh;
display: flex;
flex-direction: column;
}
.dashboard-topbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 24px;
background: var(--color-surface);
border-bottom: 1px solid var(--color-border);
}
.dashboard-brand {
font-size: 16px;
font-weight: 700;
}
.dashboard-user {
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
color: var(--color-text-muted);
}
.dashboard-role {
padding: 2px 8px;
border-radius: 999px;
background: var(--color-bg);
border: 1px solid var(--color-border);
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.dashboard-logout {
border: 1px solid var(--color-border);
background: var(--color-surface);
color: var(--color-text);
border-radius: 8px;
padding: 6px 12px;
font-size: 13px;
cursor: pointer;
}
.dashboard-logout:hover {
border-color: var(--color-primary);
color: var(--color-primary);
}
.dashboard-body {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.dashboard-placeholder {
text-align: center;
max-width: 420px;
color: var(--color-text-muted);
}
.dashboard-placeholder h2 {
color: var(--color-text);
margin-bottom: 8px;
}