Browse Source

Convert PageHeader to `h1` from `h5`

See https://github.com/volosoft/volo/issues/10355#issuecomment-1134332479
pull/12710/head
Enis Necipoglu 4 years ago
parent
commit
b793453ca6
  1. 2
      framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Layout/PageHeader.razor

2
framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Layout/PageHeader.razor

@ -7,7 +7,7 @@
@if(Options.Value.RenderPageTitle)
{
<Column ColumnSize="ColumnSize.IsAuto">
<h5 class="content-header-title">@PageLayout.Title</h5>
<h1 class="content-header-title">@PageLayout.Title</h1>
</Column>
}

Loading…
Cancel
Save