Skip to content

Commit

Permalink
-Hide mobile menu buttons
Browse files Browse the repository at this point in the history
-Nuget updates
  • Loading branch information
enkodellc committed Feb 15, 2021
1 parent 32990e1 commit b4d9ff6
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
* -crlf

###############################################################################
# Set default behavior for command prompt diff.
Expand All @@ -17,7 +18,7 @@
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
Expand Down Expand Up @@ -46,9 +47,9 @@

###############################################################################
# diff behavior for common document formats
#
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
Expand Down
12 changes: 12 additions & 0 deletions src/Server/BlazorBoilerplate.Server/.config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "5.0.3",
"commands": [
"dotnet-ef"
]
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PackageReference Include="AspNet.Security.OAuth.Apple" Version="5.0.1" />
<PackageReference Include="AutoMapper" Version="10.1.1" />
<PackageReference Include="Breeze.AspNetCore.NetCore" Version="3.0.1" />
<PackageReference Include="FluentValidation.AspNetCore" Version="9.5.0" />
<PackageReference Include="FluentValidation.AspNetCore" Version="9.5.1" />
<PackageReference Include="FormatWith" Version="3.0.1" />
<PackageReference Include="IdentityServer4" Version="4.1.1" />
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
Expand All @@ -46,7 +46,7 @@
<PackageReference Include="NSwag.AspNetCore" Version="13.10.2" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.AspNetCore" Version="3.4.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.2.0-dev-00244" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.2.0-dev-00264" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0-dev-00909" />
<PackageReference Include="MailKit" Version="2.10.1" />
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="5.6.0" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<MatButton Link="https://www.paypal.me/GiovanniQuarella"><i class="fa fa-cc-paypal" style="font-size: 30px; margin: 3px;"></i> Donate</MatButton>
<MatButton Link="https://www.paypal.me/enkodellc" Class="donate"><i class="fa fa-cc-paypal" style="font-size: 30px; margin: 3px;"></i> <span>Donate</span></MatButton>
@code {

}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@inject NavigationManager navigationManager
@inject IJSRuntime js

<MatSelectValue Value="CurrentCulture" Items="@BlazorBoilerplate.Shared.Localizer.Settings.SupportedCulturesWithName"
<MatSelectValue Class="selectCulture" Value="CurrentCulture" Items="@BlazorBoilerplate.Shared.Localizer.Settings.SupportedCulturesWithName"
ValueSelector=@(i => i.Item2)
ValueChanged="(string i) => OnCultureChanged(i)">
<ItemTemplate Context="CultureItem">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,10 @@ ul.breadcrumb {
.logo-img {
height: 38px;
}
.selectCulture,
.donate span {
display: none;
}
}

/* Small devices (landscape phones, less than 768px)*/
Expand Down

0 comments on commit b4d9ff6

Please sign in to comment.