Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #8 from Zaxiure/development
Browse files Browse the repository at this point in the history
Fixed some styling stuff.
  • Loading branch information
Zaxiure authored Sep 14, 2022
2 parents 17a6763 + e272832 commit c8ce71f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
8 changes: 6 additions & 2 deletions HuntStats/HuntStats.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,20 @@
<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>

<Target Name="RemoveSatelliteAssemblies" AfterTargets="ResolveAssemblyReferences">
<ItemGroup>
<ReferenceCopyLocalPaths Remove="@(ReferenceSatellitePaths)" />
</ItemGroup>
</Target>

<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.123" />
<PackageReference Include="Dommel" Version="3.0.0" />
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="1.1.0" />
<PackageReference Include="MediatR" Version="10.0.1" />
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="10.0.1" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.0-preview.7.22376.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2-beta1" />
<PackageReference Include="PInvoke.User32" Version="0.7.124" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 0 additions & 2 deletions HuntStats/MauiProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ public static MauiApp CreateMauiApp()
builder.Services.AddBlazorWebViewDeveloperTools();
#endif

builder.Services.AddSingleton<WeatherForecastService>();

return builder.Build();
}
}
1 change: 0 additions & 1 deletion HuntStats/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
@using HuntStats.Data
@using HuntStats.Features
@using MediatR
@using Microsoft.VisualBasic.Devices
@inherits LayoutComponentBase
@inject AppState _appState;
@inject IDbConnectionFactory _connectionFactory;
Expand Down
10 changes: 6 additions & 4 deletions HuntStats/Shared/NavMenu.razor
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
@inject IJSRuntime _js
@inject AppState _appState

<a class="full-image" href="/" tabindex="-1">
<img src="/images/logo.png" alt="" style="max-height: 83px;width:unset !important;display: block;margin: auto;">
<a class="full-image" style="text-decoration: none !important" href="/" tabindex="-1">
<h2 style="text-align: center;color: #fff;">HuntStats</h2>
@* <img src="/images/logo.png" alt="" style="max-height: 83px;width:unset !important;display: block;margin: auto;"> *@
</a>
<a class="small-image" href="/" tabindex="-1">
<img src="/images/logo-klein.png" alt="" style="height:46px;">
<a class="small-image" style="text-decoration: none !important" href="/" tabindex="-1">
<h2 style="text-align: center;color: #fff;">H</h2>
@* <img src="/images/logo-klein.png" alt="" style="height:46px;"> *@
</a>

<div class="nav-items">
Expand Down
Binary file removed HuntStats/wwwroot/images/logo-klein.png
Binary file not shown.
Binary file removed HuntStats/wwwroot/images/logo.png
Binary file not shown.

0 comments on commit c8ce71f

Please sign in to comment.