From 9c27c78ca7026bc44a22896144343570007dfe20 Mon Sep 17 00:00:00 2001 From: Hagen <hagen.dressler@mni.thm.de> Date: Tue, 13 Mar 2018 13:29:54 +0100 Subject: [PATCH] Edit html template comment-list --- src/app/comment-list/comment-list.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/comment-list/comment-list.component.html b/src/app/comment-list/comment-list.component.html index c7fea105d..7671a21e6 100644 --- a/src/app/comment-list/comment-list.component.html +++ b/src/app/comment-list/comment-list.component.html @@ -1,5 +1,5 @@ <div fxLayout="row" fxLayoutAlign="center"> - <div fxLayout="column" fxLayoutGap="20"> + <div fxLayout="column" fxLayoutGap="20px"> <div *ngFor="let comment of comments"> <mat-card> <mat-card-content> @@ -7,7 +7,7 @@ {{comment.body}} - <div class="body-buttons"> + <div class="body-buttons" fxLayout="Column" fxLayoutGap="5px" fxLayoutAlign="end"> <button *ngIf="!comment.read" mat-fab color="warn" matTooltip="Is not read" (click)="setRead(comment)"> <mat-icon>clear</mat-icon> </button> -- GitLab