diff options
| author | Kamran Ahmed <kamranahmed.se@gmail.com> | 2018-08-22 22:40:57 +0500 |
|---|---|---|
| committer | Kamran Ahmed <kamranahmed.se@gmail.com> | 2018-08-22 22:40:57 +0500 |
| commit | 5dcf7c9c63edab56dc353df6e868442b302c19ca (patch) | |
| tree | 2fc5c1fb31a6cce3238cc4d799c360e57d638007 /src | |
| parent | Design and add repository items in listing (diff) | |
| download | githunt-5dcf7c9c63edab56dc353df6e868442b302c19ca.tar.gz | |
Multi group listing
Diffstat (limited to 'src')
| -rw-r--r-- | src/containers/feed/index.js | 18 | ||||
| -rw-r--r-- | src/containers/feed/styles.css | 8 |
2 files changed, 26 insertions, 0 deletions
diff --git a/src/containers/feed/index.js b/src/containers/feed/index.js index 1b2ccad..e7ee65f 100644 --- a/src/containers/feed/index.js +++ b/src/containers/feed/index.js @@ -28,6 +28,24 @@ class FeedContainer extends React.Component { <Repository/> <Repository/> <Repository/> + <Repository/> + <Repository/> + <Repository/> + </div> + <div className="row row-group"> + <div className="group-heading"> + <div className="col"> + <h4>Yesterday <span className="small text-muted">July 11, 2019</span></h4> + </div> + </div> + </div> + <div className="row repositories-list"> + <Repository/> + <Repository/> + <Repository/> + <Repository/> + <Repository/> + <Repository/> </div> </div> </div> diff --git a/src/containers/feed/styles.css b/src/containers/feed/styles.css index bba5831..3951375 100644 --- a/src/containers/feed/styles.css +++ b/src/containers/feed/styles.css @@ -31,3 +31,11 @@ opacity: 1; z-index: 2; } + +.row-group { + margin-top: 25px; +} + +.row-group .group-heading { + margin: auto; +} |
