WellNuo/admin/app/globals.css
Sergei ec63a2c1e2 Add admin panel, optimized API, OTP auth, migrations
Admin Panel (Next.js):
- Dashboard with stats
- Users list with relationships (watches/watched_by)
- User detail pages
- Deployments list and detail pages
- Devices, Orders, Subscriptions pages
- OTP-based admin authentication

Backend Optimizations:
- Fixed N+1 query problem in admin APIs
- Added pagination support
- Added .range() and count support to Supabase wrapper
- Optimized batch queries with lookup maps

Database:
- Added migrations for schema evolution
- New tables: push_tokens, notification_settings
- Updated access model

iOS Build Scripts:
- build-ios.sh, clear-apple-cache.sh
- EAS configuration updates

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-20 11:05:39 -08:00

41 lines
662 B
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #4A90D9;
--primary-dark: #2E5C8A;
--success: #5AC8A8;
--warning: #F5A623;
--error: #D0021B;
--background: #FFFFFF;
--surface: #F5F7FA;
--text-primary: #333333;
--text-secondary: #666666;
--text-muted: #999999;
--border: #E5E7EB;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--surface);
color: var(--text-primary);
line-height: 1.5;
}
a {
color: inherit;
text-decoration: none;
}
button {
cursor: pointer;
font-family: inherit;
}
input, select, textarea {
font-family: inherit;
}