Implemented application profile and dark mode.

Added a specific cascading dependencies component.

Added some content to main page.

Added configuration page and persistence for it.

Code restructured (moved some code into separate components).
This commit is contained in:
2021-05-31 16:39:52 -05:00
parent b311206ff1
commit 7d4be012cd
29 changed files with 836 additions and 193 deletions

View File

@@ -4,8 +4,30 @@ html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
#app {
min-height: 100vh;
}
.page {
min-height: inherit;
}
.bg-dark {
background-color: #262626 !important;
}
nav.bg-dark {
background-color: #1A1A1A !important;
}
.content {
padding-top: 1.5rem;
padding-right: 2rem;
padding-left: 2rem;
}
.bg-dark .card {
background-color: #1F1F1F;
}
#blazor-error-ui {

View File

Before

Width:  |  Height:  |  Size: 255 B

After

Width:  |  Height:  |  Size: 255 B

View File

@@ -14,12 +14,12 @@
<body>
<div id="app">
<div class="d-flex flex-column align-items-center justify-content-center" style="width: 100vw; height: 100vh;">
<div class="my-1">
<div class="spinner-border text-primary" role="status">
<div class="my-2">
<div class="spinner-border text-secondary" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div class="my-1 text-muted">
<div class="my-2 text-muted">
Loading...
</div>
</div>