Skip to content

Commit

Permalink
improve the layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
msynk committed Sep 24, 2024
1 parent 5a1de5f commit 1185b19
Show file tree
Hide file tree
Showing 28 changed files with 256 additions and 388 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<BitButton IconOnly
FixedColor
Variant="BitVariant.Text"
IconName="@BitIconName.Sunny"
OnClick="WrapHandled(ToggleTheme)"
Color="BitColor.SecondaryBackground"
OnClick="WrapHandled(ToggleTheme)" />
IconName="@(currentTheme == AppThemeType.Light ? BitIconName.Sunny : BitIconName.ClearNight)" />


<BitDropdown Items="cultures"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public partial class IdentityHeader : AppComponentBase


[CascadingParameter(Name = Parameters.CurrentDir)] private BitDir? currentDir { get; set; }
[CascadingParameter(Name = Parameters.CurrentTheme)] private AppThemeType? currentTheme { get; set; }


protected override async Task OnInitAsync()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
@import '../../../Styles/abstracts/_bit-css-variables.scss';

header {
width: 100%;
padding: 1rem;
position: absolute;
z-index: $bit-zindex-base;
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<BitStack Style="width:75%" Alignment="BitAlignment.Center">
<BitImage Width="85%" Src="_content/Boilerplate.Client.Core/images/identitylayout-image.webp" />
<BitText Typography="BitTypography.Body1">
bit Boilerplate is a feature-rich project template for both Visual studio and the .NET CLI.
It comes with a lot of features right out of the box that are required for a real world application.
@* bit Boilerplate is a feature-rich project template for both Visual studio and the .NET CLI.
It comes with a lot of features right out of the box that are required for a real world application. *@
</BitText>
</BitStack>
</BitStack>
Expand Down
Loading

0 comments on commit 1185b19

Please sign in to comment.