diff --git a/src/app/components/shared/comment/comment.component.html b/src/app/components/shared/comment/comment.component.html index 47f0f0ef7ad9fdef09366801be9b2c1165cd0dec..1ab47fd669879a6a5429a3c9dbd1ff73b144ec3c 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 a036f49eccac54500c5245a8598123392c81ab93..c6702f5f327240ae194d8f3612db1d70035269ca 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%; }