From 27edc3877421b9c58ca1784e38f280eb8b4a21e0 Mon Sep 17 00:00:00 2001
From: Sebastian Wittek <sebastian.wittek@mni.thm.de>
Date: Fri, 12 Apr 2019 11:00:49 +0200
Subject: [PATCH] make the icons greater

---
 src/app/components/shared/comment/comment.component.html | 2 +-
 src/app/components/shared/comment/comment.component.scss | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/app/components/shared/comment/comment.component.html b/src/app/components/shared/comment/comment.component.html
index 47f0f0ef7..1ab47fd66 100644
--- a/src/app/components/shared/comment/comment.component.html
+++ b/src/app/components/shared/comment/comment.component.html
@@ -9,7 +9,7 @@
         <mat-icon [ngClass]="{true: 'favorite-icon', false: 'not-favorite-icon'}[comment.favorite]">favorite_border</mat-icon>
       </button>
       <button mat-icon-button [disabled]="isStudent" (click)="setRead(comment)" [matTooltip]="comment.read ? 'Mark  as unread' : 'Mark as read'">
-        <mat-icon [ngClass]="{true: 'read-icon', false: 'unread-icon'}[comment.read]">visibility</mat-icon>
+        <mat-icon class="icon" [ngClass]="{true: 'read-icon', false: 'unread-icon'}[comment.read]">visibility</mat-icon>
       </button>
     </div>
     <div fxLayout="row">
diff --git a/src/app/components/shared/comment/comment.component.scss b/src/app/components/shared/comment/comment.component.scss
index a036f49ec..c6702f5f3 100644
--- a/src/app/components/shared/comment/comment.component.scss
+++ b/src/app/components/shared/comment/comment.component.scss
@@ -77,6 +77,10 @@ h2 {
   text-overflow: ellipsis;
 }
 
+.mat-icon {
+  transform: scale(1.3);
+}
+
 #date {
   margin-top: 1.2%;
 }
-- 
GitLab