Skip to content

Commit

Permalink
feat: page-header header and subheader use correct tags
Browse files Browse the repository at this point in the history
  • Loading branch information
markuczy committed Feb 28, 2024
1 parent 263124c commit d6511c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
</div>
</ng-template>
<div class="header" *ngIf="!loading; else skeletonBar">
<h3 *ngIf="!!header">{{ header }}</h3>
<h4 *ngIf="!!subheader">{{ subheader }}</h4>
<h1 *ngIf="!!header">{{ header }}</h1>
<h2 *ngIf="!!subheader">{{ subheader }}</h2>
</div>
</div>
<div class="action-items-wrap mt-2 md:mt-0">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@
justify-content: center;
flex-direction: column;
}
h3 {
h1 {
font-size: 1em;
font-weight: 700;
margin: 0px;
padding: 0px;
}
h4 {
h2 {
font-size: 1em;
font-weight: 400;
margin: 0px;
Expand Down

0 comments on commit d6511c8

Please sign in to comment.