diff options
| author | Marijn Besseling <njirambem@gmail.com> | 2025-09-07 20:56:09 +0200 |
|---|---|---|
| committer | Marijn Besseling <njirambem@gmail.com> | 2025-09-07 20:56:09 +0200 |
| commit | 9ab322751a732d8cbc1ddf4f2ecf5022d7242baa (patch) | |
| tree | 49abc49c7d148b2f575aa5daef32875d44729561 /Blog/Components/Layout | |
WIP migration
Diffstat (limited to 'Blog/Components/Layout')
| -rw-r--r-- | Blog/Components/Layout/MainLayout.razor | 3 | ||||
| -rw-r--r-- | Blog/Components/Layout/MainLayout.razor.css | 20 |
2 files changed, 23 insertions, 0 deletions
diff --git a/Blog/Components/Layout/MainLayout.razor b/Blog/Components/Layout/MainLayout.razor new file mode 100644 index 0000000..e1a9a75 --- /dev/null +++ b/Blog/Components/Layout/MainLayout.razor | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | @inherits LayoutComponentBase | ||
| 2 | |||
| 3 | @Body | ||
diff --git a/Blog/Components/Layout/MainLayout.razor.css b/Blog/Components/Layout/MainLayout.razor.css new file mode 100644 index 0000000..60cec92 --- /dev/null +++ b/Blog/Components/Layout/MainLayout.razor.css | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #blazor-error-ui { | ||
| 2 | color-scheme: light only; | ||
| 3 | background: lightyellow; | ||
| 4 | bottom: 0; | ||
| 5 | box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); | ||
| 6 | box-sizing: border-box; | ||
| 7 | display: none; | ||
| 8 | left: 0; | ||
| 9 | padding: 0.6rem 1.25rem 0.7rem 1.25rem; | ||
| 10 | position: fixed; | ||
| 11 | width: 100%; | ||
| 12 | z-index: 1000; | ||
| 13 | } | ||
| 14 | |||
| 15 | #blazor-error-ui .dismiss { | ||
| 16 | cursor: pointer; | ||
| 17 | position: absolute; | ||
| 18 | right: 0.75rem; | ||
| 19 | top: 0.5rem; | ||
| 20 | } | ||