From 193bf208752d7c90bf799002c52743d814645972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de> Date: Mon, 3 Jun 2019 22:20:08 +0200 Subject: [PATCH] Remove outer card for more space --- .../shared/comment-list/comment-list.component.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/components/shared/comment-list/comment-list.component.html b/src/app/components/shared/comment-list/comment-list.component.html index 306fe5587..c775e7805 100644 --- a/src/app/components/shared/comment-list/comment-list.component.html +++ b/src/app/components/shared/comment-list/comment-list.component.html @@ -60,9 +60,7 @@ </mat-menu> </div> -<mat-card class="outer-card" *ngIf="showComments().length > 0"> - <app-comment *ngFor="let current of showComments()" [comment]="current"></app-comment> -</mat-card> +<app-comment *ngFor="let current of showComments()" [comment]="current"></app-comment> <div *ngIf="comments.length < 1" fxLayout="row" fxLayoutAlign="center center" class="no-comments"> <h4>{{ 'comment-page.no-comments' | translate }}</h4> -- GitLab