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:
@@ -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 {
|
||||
|
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
@@ -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>
|
||||
|
Reference in New Issue
Block a user