summaryrefslogtreecommitdiff
path: root/Blog
diff options
context:
space:
mode:
authorMarijn Besseling <njirambem@gmail.com>2025-11-02 16:14:24 +0100
committerMarijn Besseling <njirambem@gmail.com>2025-11-02 16:14:24 +0100
commitc3bb70f54d5346d4319c0776a4e88f73553a7942 (patch)
treed5a480461e3b8ca5ae01b61f461e9f95e45771cb /Blog
parentaf13f6fd659fb87419462fc439e594afe6790873 (diff)
inline header
Diffstat (limited to 'Blog')
-rw-r--r--Blog/Components/Pages/BRP.razor2
-rw-r--r--Blog/wwwroot/app.css4
2 files changed, 5 insertions, 1 deletions
diff --git a/Blog/Components/Pages/BRP.razor b/Blog/Components/Pages/BRP.razor
index 89c8510..6f15f0d 100644
--- a/Blog/Components/Pages/BRP.razor
+++ b/Blog/Components/Pages/BRP.razor
@@ -4,7 +4,7 @@
4<main> 4<main>
5 <div> 5 <div>
6 <details> 6 <details>
7 <summary><h1>Request</h1></summary> 7 <summary><h1 class="inline-block">Request</h1></summary>
8 <JsonRender Element="RequestBody?.RootElement"></JsonRender> 8 <JsonRender Element="RequestBody?.RootElement"></JsonRender>
9 </details> 9 </details>
10 </div> 10 </div>
diff --git a/Blog/wwwroot/app.css b/Blog/wwwroot/app.css
index d5dd2b4..e812fa9 100644
--- a/Blog/wwwroot/app.css
+++ b/Blog/wwwroot/app.css
@@ -316,3 +316,7 @@ li.dash {
316 color: var(--info); 316 color: var(--info);
317} 317}
318 318
319.inline-block {
320 display: inline-block;
321}
322