Skip to content

Commit

Permalink
Fix size of heading
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidMStraub committed Sep 18, 2022
1 parent 540de43 commit 0bc8b4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/GrampsjsViewAnniversaries.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class GrampsjsViewAnniversaries extends GrampsjsConnectedComponent {
}

renderLoading() {
return html`<h2>${this._('Anniversaries')}</h2>
return html`<h3>${this._('Anniversaries')}</h3>
<div class="event">
<div class="date">
<span class="skeleton" style="width:7em;">&nbsp;</span>
Expand All @@ -44,7 +44,7 @@ export class GrampsjsViewAnniversaries extends GrampsjsConnectedComponent {
}

renderContent() {
return html`<h2>${this._('Anniversaries')}</h2>
return html`<h3>${this._('Anniversaries')}</h3>
${this._data.data.length === 0
? html`<p>${this._('No items')}.</p>`
: this._data.data.map(event => this._renderEvent(event))} `
Expand Down

0 comments on commit 0bc8b4f

Please sign in to comment.