Auto-deploy: 2026-01-13 12:28:36 | 2 arquivo(s) alterado(s)
This commit is contained in:
parent
3fe17afc54
commit
f4800c96dc
|
|
@ -21,7 +21,9 @@ const PrafrotRoutes = lazy(() => import('@/features/prafrot/routes').then(m => (
|
||||||
const PrafrotLogin = lazy(() => import('@/features/prafrot/views/LoginView'));
|
const PrafrotLogin = lazy(() => import('@/features/prafrot/views/LoginView'));
|
||||||
const TableDebug = lazy(() => import('@/features/prafrot/views/TableDebug'));
|
const TableDebug = lazy(() => import('@/features/prafrot/views/TableDebug'));
|
||||||
const PlaygroundView = lazy(() => import('@/features/dev-tools/views/PlaygroundView'));
|
const PlaygroundView = lazy(() => import('@/features/dev-tools/views/PlaygroundView'));
|
||||||
const { WorkspaceLayout, LoginView, WorkspaceGuard } = lazy(() => import('@/features/workspace'));
|
const WorkspaceLayout = lazy(() => import('@/features/workspace').then(m => ({ default: m.WorkspaceLayout })));
|
||||||
|
const LoginView = lazy(() => import('@/features/workspace').then(m => ({ default: m.LoginView })));
|
||||||
|
const WorkspaceGuard = lazy(() => import('@/features/workspace').then(m => ({ default: m.WorkspaceGuard })));
|
||||||
|
|
||||||
// Loading component
|
// Loading component
|
||||||
const PageLoader = () => (
|
const PageLoader = () => (
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,7 @@ const ExcelTable = ({
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="bg-white dark:bg-[#1b1b1b] border border-slate-200 dark:border-[#2a2a2a] rounded-sm flex flex-col h-full w-full max-w-full min-w-0 text-xs font-sans antialiased text-slate-700 dark:text-[#e0e0e0] relative overflow-hidden transition-colors">
|
<div className="bg-white dark:bg-[#1b1b1b] border border-slate-200 dark:border-[#2a2a2a] rounded-xl flex flex-col h-full w-full max-w-full min-w-0 text-xs font-sans antialiased text-slate-700 dark:text-[#e0e0e0] relative overflow-hidden transition-colors">
|
||||||
|
|
||||||
{/* Loading Overlay */}
|
{/* Loading Overlay */}
|
||||||
{loading && (
|
{loading && (
|
||||||
|
|
|
||||||
|
|
@ -61,8 +61,17 @@ export const PrafrotLayout = () => {
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
{/* Content */}
|
{/* Content */}
|
||||||
<div className="flex-1 p-8 min-w-0 overflow-y-auto custom-scrollbar">
|
<div className="flex-1 p-6 min-w-0 overflow-hidden">
|
||||||
<Outlet />
|
<div className={cn(
|
||||||
|
"h-full w-full rounded-2xl border overflow-hidden flex flex-col shadow-sm",
|
||||||
|
isDarkMode
|
||||||
|
? "bg-[#1b1b1b] border-zinc-800 shadow-black/20"
|
||||||
|
: "bg-white border-slate-200 shadow-slate-200/50"
|
||||||
|
)}>
|
||||||
|
<div className="flex-1 overflow-y-auto custom-scrollbar p-6">
|
||||||
|
<Outlet />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue