mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-16 13:00:45 +02:00
20 lines
No EOL
644 B
HTML
20 lines
No EOL
644 B
HTML
<div fxLayout="column">
|
|
<div class="padding-gap">
|
|
<mat-card>
|
|
<mat-card-header>
|
|
<mat-card-subtitle>
|
|
<h2>Help</h2>
|
|
</mat-card-subtitle>
|
|
</mat-card-header>
|
|
<mat-card-content *ngFor="let helpTopic of helpTopics">
|
|
<mat-expansion-panel>
|
|
<mat-expansion-panel-header>
|
|
<mat-panel-title>{{helpTopic.question}}</mat-panel-title>
|
|
</mat-expansion-panel-header>
|
|
<mat-panel-description>{{helpTopic.answer}}</mat-panel-description>
|
|
</mat-expansion-panel>
|
|
<div class="divider"></div>
|
|
</mat-card-content>
|
|
</mat-card>
|
|
</div>
|
|
</div> |