- Added OrganizationProfile model with license_user_limit choices (20/50/100/1000), company_name, brand_logo_url
- Added migration 0003_organization_profile
- Admin-only REST endpoint GET/PATCH /api/v1/accounts/organizations/{org_id}/profile/
- OrganizationProfileSerializer, OrganizationProfileAdmin, factory, and integration tests
- Static Nginx-hostable frontend under frontend/public with configurable API_BASE_URL via config.js
- frontend/nginx.conf reference server config
- .gitea/workflows/ci.yml: ruff lint, pytest with Postgres/Redis services, docker build
- README.md: English deployment guide covering env vars, Docker Compose, migration, org profile API, frontend deploy
Co-Authored-By: Paperclip <noreply@paperclip.ing>
49 lines
817 B
CSS
49 lines
817 B
CSS
:root {
|
|
--bg: #f1f6fb;
|
|
--card: #ffffff;
|
|
--text: #1a2633;
|
|
--accent: #0f6aa8;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: grid;
|
|
place-items: center;
|
|
background: radial-gradient(circle at top right, #d9ecfb, var(--bg));
|
|
color: var(--text);
|
|
font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
.card {
|
|
width: min(92vw, 640px);
|
|
padding: 2rem;
|
|
border-radius: 14px;
|
|
background: var(--card);
|
|
box-shadow: 0 12px 30px rgba(15, 41, 73, 0.12);
|
|
}
|
|
|
|
.logo {
|
|
max-height: 48px;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
button {
|
|
border: 0;
|
|
border-radius: 8px;
|
|
padding: 0.7rem 1rem;
|
|
background: var(--accent);
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
pre {
|
|
margin-top: 1rem;
|
|
padding: 0.75rem;
|
|
background: #f8fbfe;
|
|
border-radius: 8px;
|
|
overflow: auto;
|
|
}
|