diff --git a/src/app/comment/comment.component.html b/src/app/comment/comment.component.html index d3ec5a4c18515ca0712cc142b969ea9ab5be02ee..bc3451febe100b067fdabfe7df91e8a0a026107b 100644 --- a/src/app/comment/comment.component.html +++ b/src/app/comment/comment.component.html @@ -1,23 +1,19 @@ <form> - <ul> <li> <mat-card> <mat-card-content> - <b>com header</b><br> + <b> <!-- insert subject of comment --> </b><br> <!-- insert comment --> </mat-card-content> <mat-card-footer> - <div style="float:left"> - <i>#date + time</i> - </div> - <div style="float:right"> - <i>#name of commentator</i> + <div class="date"> + <i> <!-- insert date of comment --> </i> </div> </mat-card-footer> </mat-card><br> </li> - </ul> + <button mat-raised-button color="primary">back</button> </form> diff --git a/src/app/comment/comment.component.scss b/src/app/comment/comment.component.scss index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..99ce790febc62a53bb1940c6c8777288700b4627 100644 --- a/src/app/comment/comment.component.scss +++ b/src/app/comment/comment.component.scss @@ -0,0 +1,4 @@ +.date { + text-align: left; + font-size: 80%; +}