mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 02:49:41 +02:00
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>
39 lines
817 B
CSS
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));
|
|
}
|