Skip to content

Commit

Permalink
added logo
Browse files Browse the repository at this point in the history
  • Loading branch information
bharathwajv committed May 15, 2022
1 parent 56e0a0f commit 15a874a
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/Client.Infrastructure/Preferences/ClientPreference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ClientPreference : IPreference
public bool IsDrawerOpen { get; set; }
public string PrimaryColor { get; set; } = CustomColors.Light.Primary;
public string SecondaryColor { get; set; } = CustomColors.Light.Secondary;
public double BorderRadius { get; set; } = 5;
public double BorderRadius { get; set; } = 11;
public string LanguageCode { get; set; } = LocalizationConstants.SupportedLanguages.FirstOrDefault()?.Code ?? "en-US";
public FshTablePreference TablePreference { get; set; } = new FshTablePreference();
}
4 changes: 2 additions & 2 deletions src/Client.Infrastructure/Theme/CustomColors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public static class Light

public static class Dark
{
public const string Primary = "#3eaf7c";
public const string Secondary = "#2196f3";
public const string Primary = "#F44336";
public const string Secondary = "#2196F3";
public const string Background = "#1b1f22";
public const string AppbarBackground = "#1b1f22";
public const string DrawerBackground = "#121212";
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Pages/Authentication/ForgotPassword.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Link="/" />
</MudTooltip>
<div class="d-flex justify-center">
<img src="full-stack-hero-logo.png" Style="height:120px" />
<img src="rp-logo.png" Style="height:120px" />
</div>
<div class="fsh-center-text">
<MudText Typo="Typo.h4" GutterBottom="true" style="margin-bottom:5px">@L["Forgot Password?"]
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Pages/Authentication/Login.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@inject IStringLocalizer<SharedResource> LS

<div class="d-flex justify-center">
<img src="full-stack-hero-logo.png" Style="height:120px" />
<img src="rp-logo.png" Style="height:120px" />
</div>
<div class="fsh-center-text">
<MudText Typo="Typo.h4" GutterBottom="true">Sign In</MudText>
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Pages/Authentication/SelfRegister.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Link="/" />
</MudTooltip>
<div class="d-flex justify-center">
<img src="full-stack-hero-logo.png" Style="height:120px" />
<img src="rp-logo.png" Style="height:120px" />
</div>
<div class="fsh-center-text">
<MudText Typo="Typo.h4" GutterBottom="true" style="margin-bottom:5px">
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<MudGrid>
<MudItem xs="12" sm="12" md="12">
<div class="d-flex justify-center mt-4">
<img src="full-stack-hero-logo.png" Style="height:250px" />
<img src="rp-logo.png" Style="height:250px" />
</div>
</MudItem>
<MudItem xs="12" sm="12" md="12">
Expand Down
Binary file removed src/Client/wwwroot/full-stack-hero-logo.png
Binary file not shown.
8 changes: 4 additions & 4 deletions src/Client/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<!--<link href="RewardsPlus.BlazorWebAssembly.Client.styles.css" rel="stylesheet" />-->
<link href="css/fsh.css" rel="stylesheet" />
<link href="manifest.json" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="full-stack-hero-logo.png" />
<link rel="apple-touch-icon" sizes="192x192" href="full-stack-hero-logo.png" />
<link rel="apple-touch-icon" sizes="512x512" href="rp-logo.png" />
<link rel="apple-touch-icon" sizes="192x192" href="rp-logo.png" />
</head>

<body>
Expand All @@ -33,7 +33,7 @@
animation: slide 3s ease-in-out infinite alternate;
bottom: 0;
left: -50%;
opacity: .5;
opacity: .1;
position: fixed;
right: -50%;
top: 0;
Expand All @@ -55,7 +55,7 @@
<div class="fsh-wasm" style="animation-direction:alternate-reverse;animation-duration:2s;"></div>
<div class="fsh-wasm" style="animation-duration:5s;"></div>
<div class="fsh-wasm-cont ">
<img src="/full-stack-hero-logo.png" Style="height:350px; width:350px; opacity:0.8" />
<img src="/rp-logo.png" Style="height:550px; width:550px;" />
</div>
</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/Client/wwwroot/manifest.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "Blazor WebAssembly Boilerplate",
"short_name": "Blazor WebAssembly Boilerplate",
"name": "Rewards Plus",
"short_name": "RP",
"start_url": "./",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#3eaf7c",
"prefer_related_applications": false,
"icons": [
{
"src": "full-stack-hero-logo.png",
"src": "rp-logo.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "full-stack-hero-logo.png",
"src": "rp-logo.png",
"type": "image/png",
"sizes": "192x192"
}
Expand Down
Binary file added src/Client/wwwroot/rp-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 15a874a

Please sign in to comment.