Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
beyaz committed Mar 30, 2024
1 parent f555d9b commit 521500c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 1 addition & 4 deletions ReactWithDotNet/Mixin.1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,7 @@ public static StyleModifier DisplayInlineBlock
/// </summary>
public static StyleModifier HeightAuto => new(style => style.height = "auto");

/// <summary>
/// height: 100%
/// </summary>
public static StyleModifier HeightMaximized => Height("100%"); // todo: remove and update heightMax


/// <summary>
/// <para>justifyContent = "center"</para>
Expand Down
7 changes: 6 additions & 1 deletion ReactWithDotNet/Mixin.9.Height.Weight.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,12 @@ partial class Mixin
/// <summary>
/// height: 100%
/// </summary>
public static StyleModifier HeightFull => HeightMaximized;
public static StyleModifier HeightFull => Height("100%");

/// <summary>
/// height: 100%
/// </summary>
public static StyleModifier HeightMaximized => Height("100%"); // todo: remove and update heightMax

/// <summary>
/// width: 100%
Expand Down

0 comments on commit 521500c

Please sign in to comment.