Skip to content

Commit 1e900e8

Browse files
Atomic Elements: h1 - h6
1 parent 6bc0fba commit 1e900e8

File tree

8 files changed

+47
-11
lines changed

8 files changed

+47
-11
lines changed

src/Blazor.AdminLte.Site.Shared/Pages/Layout/GridSystem.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
</Row>
7474
</Body>
7575
</Card>
76-
<h3>Responsive classes</h3>
76+
<H3>Responsive classes</H3>
7777
<p>
7878
Bootstrap’s grid includes five tiers of predefined classes for building complex responsive layouts. Customize the size of your columns on extra small, small, medium, large, or extra large devices however you see fit.
7979
</p>

src/Blazor.AdminLte.Site.Shared/Pages/Widgets/Widgets.razor

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</Header>
77
</ContentHeader>
88
<ContentMain>
9-
<h5>Info Box</h5>
9+
<H5>Info Box</H5>
1010
<Row>
1111
<Column Classes="col.md._3">
1212
<InfoBox IconBackgroundColor="Color.Danger" Icon="far fa-envelope">
@@ -33,7 +33,7 @@
3333
</InfoBox>
3434
</Column>
3535
</Row>
36-
<h5>Info Box With bg-*</h5>
36+
<H5>Info Box With bg-*</H5>
3737
<Row>
3838
<Column Classes="col.md._3">
3939
<InfoBox BackgroundColor="Color.Info" Icon="far fa-bookmark" Percentage=70>
@@ -64,7 +64,7 @@
6464
</InfoBox>
6565
</Column>
6666
</Row>
67-
<h5>Info Box With bg-gradient-*</h5>
67+
<H5>Info Box With bg-gradient-*</H5>
6868
<Row>
6969
<Column Classes="col.md._3">
7070
<InfoBox Gradient="Gradient.Gradient" BackgroundColor="Color.Info" Icon="far fa-bookmark" Percentage=70>
@@ -95,7 +95,7 @@
9595
</InfoBox>
9696
</Column>
9797
</Row>
98-
<h5>Small Box</h5>
98+
<H5>Small Box</H5>
9999
<Row>
100100
<Column Classes="col.md._3">
101101
<SmallBox Icon="fas fa-shopping-cart" BackgroundColor="Color.Info">
@@ -144,8 +144,8 @@
144144

145145
</Row>
146146

147-
<h4>Cards</h4>
148-
<h5>Abilities</h5>
147+
<H4>Cards</H4>
148+
<H5>Abilities</H5>
149149
<Row>
150150
<Column Classes="col.md._3">
151151
<Card HeaderBackgroundColor="Color.Primary" ToolOptions="new CardToolOptions { Expandable = true }">
@@ -233,7 +233,7 @@
233233
</Row>
234234

235235

236-
<h5>Color Variations</h5>
236+
<H5>Color Variations</H5>
237237
<Row>
238238
<Column Classes="col.md._3">
239239
<Card HeaderBackgroundColor="Color.Primary" ToolOptions="new CardToolOptions { Collapsable = true }">
@@ -385,7 +385,7 @@
385385
</Column>
386386
</Row>
387387

388-
<h5>Custom Tools</h5>
388+
<H5>Custom Tools</H5>
389389
<Row>
390390
<Column Classes="col.md._3">
391391
<!-- This component is just for example purposes -->
@@ -406,9 +406,9 @@
406406
</Row>
407407

408408

409-
<h4>Direct Chat</h4>
409+
<H4>Direct Chat</H4>
410410

411-
<h3>Social Widgets</h3>
411+
<H3>Social Widgets</H3>
412412
<Row>
413413
<Column Classes="col.md._4">
414414

src/Blazor.AdminLte/Atoms/H1.razor

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@namespace Blazor.AdminLte
2+
<h1>@ChildContent</h1>
3+
@code {
4+
[Parameter]
5+
public RenderFragment ChildContent { get; set; }
6+
}

src/Blazor.AdminLte/Atoms/H2.razor

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@namespace Blazor.AdminLte
2+
<h2>@ChildContent</h2>
3+
@code {
4+
[Parameter]
5+
public RenderFragment ChildContent { get; set; }
6+
}

src/Blazor.AdminLte/Atoms/H3.razor

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@namespace Blazor.AdminLte
2+
<h3>@ChildContent</h3>
3+
@code {
4+
[Parameter]
5+
public RenderFragment ChildContent { get; set; }
6+
}

src/Blazor.AdminLte/Atoms/H4.razor

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@namespace Blazor.AdminLte
2+
<h4>@ChildContent</h4>
3+
@code {
4+
[Parameter]
5+
public RenderFragment ChildContent { get; set; }
6+
}

src/Blazor.AdminLte/Atoms/H5.razor

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@namespace Blazor.AdminLte
2+
<h5>@ChildContent</h5>
3+
@code {
4+
[Parameter]
5+
public RenderFragment ChildContent { get; set; }
6+
}

src/Blazor.AdminLte/Atoms/H6.razor

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@namespace Blazor.AdminLte
2+
<h6>@ChildContent</h6>
3+
@code {
4+
[Parameter]
5+
public RenderFragment ChildContent { get; set; }
6+
}

0 commit comments

Comments
 (0)