Skip to content

Commit

Permalink
closes #116
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Jul 11, 2024
1 parent 66ff592 commit 149a2e1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ion-card class="card-info">
<ion-card-content>
<ion-list>
<ion-item>
<ion-item lines="none">
<ion-label text-wrap>
<div class="title-row">
<a [routerLink]="['/card', card.id]" [queryParams]="{ q: queryString }">
Expand All @@ -26,7 +26,7 @@

<ion-list>
@for(entry of faq(); track $index) {
<ion-item>
<ion-item lines="none" class="faq-item">
<ion-label text-wrap>
<h3 [innerHTML]="'Q: ' + (entry.q | faq:card.game | markdown)"></h3>
<div>
Expand All @@ -44,7 +44,7 @@ <h3 [innerHTML]="'Q: ' + (entry.q | faq:card.game | markdown)"></h3>

<ion-list>
@for(entry of errata(); track $index) {
<ion-item>
<ion-item lines="none">
<ion-label text-wrap>
<p [innerHTML]="'&bull; ' + entry.text | faq:card.game | markdown"></p>
</ion-label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,7 @@
margin: 0;
}
}

.faq-item {
margin-top: 8px;
}

0 comments on commit 149a2e1

Please sign in to comment.