Skip to content

Commit

Permalink
⛄️🍀 -> Base styling for sidebar [HDASH-4] & [#6]
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn committed Oct 25, 2022
1 parent 53d96e6 commit 21edd91
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 3 deletions.
Binary file modified src/components/Body Section/.DS_Store
Binary file not shown.
13 changes: 12 additions & 1 deletion src/components/Body Section/Body.jsx
Original file line number Diff line number Diff line change
@@ -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 (
<div>Body</div>
<div className='mainContent'>
<Top />

<div className='bottom flex'>
<Listing />
</div>
</div>
)
}

Expand Down
11 changes: 10 additions & 1 deletion src/components/Body Section/body.css
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
/*# sourceMappingURL=body.css.map */
.mainContent {
height: 100%;
padding: 2rem;
overflow: auto;
}
.mainContent .bottom {
margin-top: 2rem;
gap: 2rem;
align-items: flex-start;
}/*# sourceMappingURL=body.css.map */
2 changes: 1 addition & 1 deletion src/components/Body Section/body.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions src/components/Body Section/body.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.mainContent{
//width: 82%;
height: 100%;
padding: 2rem;
overflow: auto;

.bottom{
margin-top: 2rem;
gap: 2rem;
align-items: flex-start;
}
}

0 comments on commit 21edd91

Please sign in to comment.