Skip to content
Snippets Groups Projects
Commit 27edc387 authored by Sebastian Wittek's avatar Sebastian Wittek
Browse files

make the icons greater

parent e20aad50
Branches
Tags
No related merge requests found
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<mat-icon [ngClass]="{true: 'favorite-icon', false: 'not-favorite-icon'}[comment.favorite]">favorite_border</mat-icon> <mat-icon [ngClass]="{true: 'favorite-icon', false: 'not-favorite-icon'}[comment.favorite]">favorite_border</mat-icon>
</button> </button>
<button mat-icon-button [disabled]="isStudent" (click)="setRead(comment)" [matTooltip]="comment.read ? 'Mark as unread' : 'Mark as read'"> <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> </button>
</div> </div>
<div fxLayout="row"> <div fxLayout="row">
......
...@@ -77,6 +77,10 @@ h2 { ...@@ -77,6 +77,10 @@ h2 {
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.mat-icon {
transform: scale(1.3);
}
#date { #date {
margin-top: 1.2%; margin-top: 1.2%;
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment