improvements + bookmarks

This commit is contained in:
2021-10-04 13:02:30 +02:00
parent a69a85aeb0
commit 0cabe9b0a5
12 changed files with 169 additions and 15 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<div *ngIf="comments" fxLayout="column" fxFlexFill class="comments">
<ng-container *ngFor="let comment of comments.content; let i = index">
<mat-divider *ngIf="i > 0"></mat-divider>
<mat-divider class="divider" *ngIf="i > 0"></mat-divider>
<ui-comment [comment]="comment" [change]="boundRefresh"></ui-comment>
</ng-container>
</div>
+4
View File
@@ -1,3 +1,7 @@
.comments {
padding-left: 15px;
}
.divider {
margin: 10px 0px;
}