|
|
@@ -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>
|