diff --git a/src/components/Body Section/.DS_Store b/src/components/Body Section/.DS_Store index 5008ddfc..02b54925 100644 Binary files a/src/components/Body Section/.DS_Store and b/src/components/Body Section/.DS_Store differ diff --git a/src/components/Body Section/Body.jsx b/src/components/Body Section/Body.jsx index 550c1a96..67abb6cb 100644 --- a/src/components/Body Section/Body.jsx +++ b/src/components/Body Section/Body.jsx @@ -1,8 +1,19 @@ import React from 'react'; +import '../SideBar Section/bodyco.css'; //import './body.css;'; + +import Top from './Top Section/Top'; +import Listing from './Listing Section/Listing'; +import Activity from './Activity Section/Activity'; const Body = () => { return ( -
Body
+
+ + +
+ +
+
) } diff --git a/src/components/Body Section/body.css b/src/components/Body Section/body.css index 7a2aae5b..14127bf7 100644 --- a/src/components/Body Section/body.css +++ b/src/components/Body Section/body.css @@ -1 +1,10 @@ -/*# sourceMappingURL=body.css.map */ \ No newline at end of file +.mainContent { + height: 100%; + padding: 2rem; + overflow: auto; +} +.mainContent .bottom { + margin-top: 2rem; + gap: 2rem; + align-items: flex-start; +}/*# sourceMappingURL=body.css.map */ \ No newline at end of file diff --git a/src/components/Body Section/body.css.map b/src/components/Body Section/body.css.map index 115ca396..e8963ae5 100644 --- a/src/components/Body Section/body.css.map +++ b/src/components/Body Section/body.css.map @@ -1 +1 @@ -{"version":3,"sources":[],"names":[],"mappings":"","file":"body.css"} \ No newline at end of file +{"version":3,"sources":["body.scss","body.css"],"names":[],"mappings":"AAAA;EAEI,YAAA;EACA,aAAA;EACA,cAAA;ACAJ;ADEI;EACI,gBAAA;EACA,SAAA;EACA,uBAAA;ACAR","file":"body.css"} \ No newline at end of file diff --git a/src/components/Body Section/body.scss b/src/components/Body Section/body.scss index e69de29b..899a4108 100644 --- a/src/components/Body Section/body.scss +++ b/src/components/Body Section/body.scss @@ -0,0 +1,12 @@ +.mainContent{ + //width: 82%; + height: 100%; + padding: 2rem; + overflow: auto; + + .bottom{ + margin-top: 2rem; + gap: 2rem; + align-items: flex-start; + } +} \ No newline at end of file