Skip to content
Snippets Groups Projects
Commit a7094a7a authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Show a bullet list instead of numeration

parent 2a50e303
Branches
1 merge request!397Fix account-deletion dialog
Pipeline #30326 passed with stages
in 7 minutes and 39 seconds
......@@ -2,9 +2,9 @@
<h3>{{ 'header.sure' | translate }}</h3>
<mat-divider></mat-divider>
<p>{{ 'header.really-delete-account' | translate }}</p>
<mat-list *ngFor="let room of rooms; let i = index">
<mat-list-item><strong>{{ i + 1 }}: {{ room.name }}</strong></mat-list-item>
</mat-list>
<ul *ngFor="let room of rooms">
<li>{{ room.name }}</li>
</ul>
<div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="10px">
<button mat-raised-button class="abort" (click)="close('abort')">
{{ 'header.abort' | translate }}
......
......@@ -21,6 +21,6 @@ button {
color: var(--on-secondary);
}
.mat-list-item {
li {
color: var(--on-surface);
}
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