Auto-deploy: 2026-01-13 12:28:36 | 2 arquivo(s) alterado(s)

This commit is contained in:
daivid.alves 2026-01-13 12:28:36 -03:00
parent 3fe17afc54
commit f4800c96dc
3 changed files with 15 additions and 4 deletions

View File

@ -21,7 +21,9 @@ const PrafrotRoutes = lazy(() => import('@/features/prafrot/routes').then(m => (
const PrafrotLogin = lazy(() => import('@/features/prafrot/views/LoginView'));
const TableDebug = lazy(() => import('@/features/prafrot/views/TableDebug'));
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
const PageLoader = () => (

View File

@ -125,7 +125,7 @@ const ExcelTable = ({
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 && (

View File

@ -61,9 +61,18 @@ export const PrafrotLayout = () => {
</header>
{/* 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">
<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>
</main>
</div>
);