managarten/apps-archived/presi/apps/web/src/app.css
Till-JS 44897ae758 chore: archive inventory, presi, storage apps
Move these apps to apps-archived/ as they are not actively developed:
- inventory: Inventory management app
- presi: Presentation tool
- storage: Cloud storage app

These can be reactivated by moving back to apps/ when needed.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-05 15:22:38 +01:00

39 lines
817 B
CSS

@import "tailwindcss";
@import "@manacore/shared-tailwind/themes.css";
/* Scan shared packages for Tailwind classes */
@source "../../../../packages/shared-ui/src";
@source "../../../../packages/shared-auth-ui/src";
@source "../../../../packages/shared-branding/src";
/* Presi-specific styles */
.slide-container {
aspect-ratio: 16 / 9;
max-width: 100%;
}
.presentation-fullscreen {
position: fixed;
inset: 0;
z-index: 50;
background-color: hsl(var(--color-background));
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: hsl(var(--color-surface));
}
::-webkit-scrollbar-thumb {
background: hsl(var(--color-border));
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: hsl(var(--color-muted-foreground));
}