Procházet zdrojové kódy

:art: 添加content style

visuddhinanda před 3 roky
rodič
revize
af408af928
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      dashboard/src/pages/studio/analysis/index.tsx

+ 2 - 1
dashboard/src/pages/studio/analysis/index.tsx

@@ -2,6 +2,7 @@ import { Outlet } from "react-router-dom";
 import { Layout } from "antd";
 
 import LeftSider from "../../../components/studio/LeftSider";
+import { styleStudioContent } from "../style";
 
 const { Content } = Layout;
 
@@ -9,7 +10,7 @@ const Widget = () => {
 	return (
 		<Layout>
 			<LeftSider selectedKeys="analysis" />
-			<Content>
+			<Content style={styleStudioContent}>
 				<Outlet />
 			</Content>
 		</Layout>