Skip to content

Commit 4f4e9ad

Browse files
authored
Demos UI updates (#21)
* Update package version and improve styling - Updated `BlazorExpress.Bulma.Docx` package to version 0.2.2. - Modified `HeroSubTitle` in `Index.razor` to remove specific dark text styling. - Added new CSS variable for dark theme background in `blazorexpress.chartjs.demo.rcl.css`. * Update component link from "Form Components" to "Utils" Removed the "Form Components" link and added a new link titled "Utils" under the same category "@DemoPageLinkCategory.Utils". NOTE: This commit message is auto-generated using GitHub Copilot.
1 parent 45c8bdb commit 4f4e9ad

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

BlazorExpress.ChartJS.Demo.RCL/BlazorExpress.ChartJS.Demo.RCL.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<ItemGroup>
2323
<PackageReference Include="BlazorExpress.Bulma" Version="0.1.1" />
24-
<PackageReference Include="BlazorExpress.Bulma.Docx" Version="0.2.1" />
24+
<PackageReference Include="BlazorExpress.Bulma.Docx" Version="0.2.2" />
2525
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.17" />
2626
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
2727
</ItemGroup>

BlazorExpress.ChartJS.Demo.RCL/Pages/Home/Index.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<HeroTitle class="mb-4">
2020
@((MarkupString)pageTitle)
2121
</HeroTitle>
22-
<HeroSubTitle Class="has-text-dark">
22+
<HeroSubTitle>
2323
@((MarkupString)pageDescription)
2424
</HeroSubTitle>
2525
</Hero>
@@ -34,7 +34,7 @@
3434
<div class="container is-max-desktop mb-4">
3535
<IndexComponentLinks Title="All Components" Category="@DemoPageLinkCategory.All" />
3636

37-
<IndexComponentLinks Title="Form Components" Category="@DemoPageLinkCategory.Utils" />
37+
<IndexComponentLinks Title="Utils" Category="@DemoPageLinkCategory.Utils" />
3838

3939
<DoYouKnow />
4040

BlazorExpress.ChartJS.Demo.RCL/wwwroot/css/blazorexpress.chartjs.demo.rcl.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
[data-theme=dark] {
1818
--be-bulma-border-color: #495057;
1919
--be-bulma-pre-bg: #1b1f22;
20+
/*masthead*/
21+
--be-bulma-body-bg-rgb: 33, 37, 41;
2022
}
2123

2224
h1:focus-visible {

0 commit comments

Comments
 (0)