Skip to content

Commit

Permalink
Make some basic theme changes so the default bootstrap and blazor is … (
Browse files Browse the repository at this point in the history
#21)

* Make some basic theme changes so the default bootstrap and blazor is not so obvious

* Add a whole theme
  • Loading branch information
dangershony authored Dec 4, 2023
1 parent 7bac591 commit 9f4f567
Show file tree
Hide file tree
Showing 57 changed files with 72 additions and 59,610 deletions.
11 changes: 11 additions & 0 deletions src/Angor/Client/Angor.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,15 @@
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
</ItemGroup>

<ItemGroup>
<Content Update="wwwroot\css\bootstrap\bootstrap.min.css">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Update="wwwroot\css\bootstrap\bootstrap.min.css.map">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Angor/Client/Pages/Wallet.razor
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@
<td>@count</td>
</tr>
<tr>
<td colspan="3">
<td colspan="4">
<div class="collapse" id="@addressInfo.Address">
<div class="card card-body">
<!-- Inner table goes here -->
Expand Down
5 changes: 3 additions & 2 deletions src/Angor/Client/Shared/MainLayout.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@

main {
flex: 1;
background-color: #FEF7EA;
}

.sidebar {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #659DBD 300%);
background-image: linear-gradient(180deg, #004B61 0%, #003646 300%);
}

.top-row {
background-color: #f7f7f7;
background-color: rgba(0,0,0,0.4);
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
Expand Down
2 changes: 1 addition & 1 deletion src/Angor/Client/Shared/NavMenu.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.top-row {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
background-color: rgba(0,54,70,0.4);
}

.navbar-brand {
Expand Down
Loading

0 comments on commit 9f4f567

Please sign in to comment.