Explorar el Código

feat: update knowhub frontend

elksmmx hace 2 semanas
padre
commit
4ea011fa51
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  1. 1 3
      knowhub/frontend/src/layouts/MainLayout.tsx

+ 1 - 3
knowhub/frontend/src/layouts/MainLayout.tsx

@@ -1,5 +1,4 @@
 import { useEffect, useRef } from 'react';
 import { useEffect, useRef } from 'react';
-import { Navbar } from '../components/layout/Navbar';
 import type { TabId } from '../components/layout/Navbar';
 import type { TabId } from '../components/layout/Navbar';
 
 
 interface MainLayoutProps {
 interface MainLayoutProps {
@@ -85,8 +84,7 @@ export function MainLayout({ activeTab, onTabChange, children }: MainLayoutProps
 
 
   return (
   return (
     <div className="min-h-screen bg-slate-50 flex flex-col overflow-x-hidden" style={{ overscrollBehaviorX: 'none' }}>
     <div className="min-h-screen bg-slate-50 flex flex-col overflow-x-hidden" style={{ overscrollBehaviorX: 'none' }}>
-      <Navbar activeTab={activeTab} onTabChange={onTabChange} />
-      <main className="w-full overflow-hidden relative" style={{ height: 'calc(100vh - 60px)' }}>
+      <main className="w-full overflow-hidden relative h-screen">
         <div
         <div
           className="flex h-full will-change-transform"
           className="flex h-full will-change-transform"
           style={{
           style={{