Skip to content

Commit

Permalink
Migrate to v7 properties
Browse files Browse the repository at this point in the history
  • Loading branch information
ScarletKuro committed Jun 29, 2024
1 parent 18fcdeb commit e4831e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/TryMudBlazor.Client/Pages/Index/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
A playground for <MudLink Typo="Typo.h4" Href="https://mudblazor.com" Target="_blank">MudBlazor</MudLink> @Version
</MudText>
<div class="px-2 mt-8">
<MudButton Variant="Variant.Filled" Color="Color.Primary" Size="Size.Large" DisableElevation="true" Class="px-6" Href="/snippet">Play now</MudButton>
<MudButton Variant="Variant.Filled" Color="Color.Primary" Size="Size.Large" DropShadow="false" Class="px-6" Href="/snippet">Play now</MudButton>
</div>
</div>
</MudItem>
Expand Down
2 changes: 1 addition & 1 deletion src/TryMudBlazor.Client/Pages/Repl.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<div class="try-layout">
<MudDrawer Fixed="false" Elevation="1" Variant="@DrawerVariant.Mini" Class="try-drawer">
<MudIconButton Title="Run (Ctrl + S)" OnClick="@CompileAsync" Disabled="@Loading" Icon="@Icons.Material.Rounded.PlayArrow" Color="@(LayoutService.IsDarkMode ? Color.Success : Color.Inherit)" />
<MudIconButton title="Run (Ctrl + S)" OnClick="@CompileAsync" Disabled="@Loading" Icon="@Icons.Material.Rounded.PlayArrow" Color="@(LayoutService.IsDarkMode ? Color.Success : Color.Inherit)" />
<MudTooltip Text="Save or Share" Delay="800" Arrow="true" Placement="Placement.Right" Color="Color.Dark">
<SaveSnippetPopup @bind-Visible="SaveSnippetPopupVisible" CodeFiles="@CodeFiles.Values" UpdateActiveCodeFileContentAction="UpdateActiveCodeFileContent" />
<MudIconButton OnClick="ShowSaveSnippetPopup" Icon="@Icons.Material.Outlined.Save" Color="@(LayoutService.IsDarkMode ? Color.Info : Color.Inherit)" />
Expand Down

0 comments on commit e4831e1

Please sign in to comment.