This repository has been archived on 2026-02-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
breakpilot-pwa/admin-v2/app/globals.css
BreakPilot Dev 660295e218 fix(admin-v2): Restore complete admin-v2 application
The admin-v2 application was incomplete in the repository. This commit
restores all missing components:

- Admin pages (76 pages): dashboard, ai, compliance, dsgvo, education,
  infrastructure, communication, development, onboarding, rbac
- SDK pages (45 pages): tom, dsfa, vvt, loeschfristen, einwilligungen,
  vendor-compliance, tom-generator, dsr, and more
- Developer portal (25 pages): API docs, SDK guides, frameworks
- All components, lib files, hooks, and types
- Updated package.json with all dependencies

The issue was caused by incomplete initial repository state - the full
admin-v2 codebase existed in backend/admin-v2 and docs-src/admin-v2
but was never fully synced to the main admin-v2 directory.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-08 23:40:15 -08:00

99 lines
1.8 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Smooth transitions */
* {
transition-property: background-color, border-color, color, fill, stroke;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
/* Focus styles */
*:focus-visible {
outline: 2px solid #0ea5e9;
outline-offset: 2px;
}
/* Category color utilities */
@layer utilities {
.bg-category-compliance {
@apply bg-compliance-100;
}
.border-category-compliance {
@apply border-compliance-300;
}
.text-category-compliance {
@apply text-compliance-700;
}
.bg-category-ai {
@apply bg-ai-100;
}
.border-category-ai {
@apply border-ai-300;
}
.text-category-ai {
@apply text-ai-700;
}
.bg-category-infrastructure {
@apply bg-infrastructure-100;
}
.border-category-infrastructure {
@apply border-infrastructure-300;
}
.text-category-infrastructure {
@apply text-infrastructure-700;
}
.bg-category-education {
@apply bg-education-100;
}
.border-category-education {
@apply border-education-300;
}
.text-category-education {
@apply text-education-700;
}
.bg-category-communication {
@apply bg-communication-100;
}
.border-category-communication {
@apply border-communication-300;
}
.text-category-communication {
@apply text-communication-700;
}
.bg-category-development {
@apply bg-development-100;
}
.border-category-development {
@apply border-development-300;
}
.text-category-development {
@apply text-development-700;
}
}