Skip to content

Commit

Permalink
Add: Update style of loading and 404
Browse files Browse the repository at this point in the history
  • Loading branch information
whats2000 committed Aug 22, 2024
1 parent f0e0c6f commit 8ce11da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
<Result Status="404"
Title="404"
SubTitle="Sorry, the page you visited does not exist." />
</LayoutView>
</NotFound>
</Router>
Expand Down
4 changes: 2 additions & 2 deletions wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ a, .btn-link {
}

#start-up-loading-circle {
border: 8px solid #f3f3f3;
border-top: 8px solid #3498db;
border: 4px solid #f3f3f3;
border-top: 6px solid #3498db;
border-radius: 50%;
width: 60px;
height: 60px;
Expand Down
8 changes: 4 additions & 4 deletions wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@

<body>
<div id="app">
<div id="start-up-container">
<div id="start-up-loading-circle"></div>
<p>Loading...</p>
</div>
<div id="start-up-container">
<div id="start-up-loading-circle"></div>
<p>Loading, first entry will take a while...</p>
</div>
</div>

<div id="blazor-error-ui">
Expand Down

0 comments on commit 8ce11da

Please sign in to comment.