From 26279ad17727a5cd23b63312c6b878d9775eaa1a Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Sun, 2 Nov 2025 23:11:00 +0100 Subject: [PATCH] Fixed sub-headings not following heading order --- src/Views/Home/Assets.cshtml | 24 ++++++++++++------------ src/Views/Home/Inventory.cshtml | 14 +++++++------- src/Views/Home/Users.cshtml | 12 ++++++------ src/Views/Shared/_Batch.cshtml | 8 ++++---- src/wwwroot/css/site.css | 4 ++++ 5 files changed, 33 insertions(+), 29 deletions(-) diff --git a/src/Views/Home/Assets.cshtml b/src/Views/Home/Assets.cshtml index aa79530..3cf82bf 100644 --- a/src/Views/Home/Assets.cshtml +++ b/src/Views/Home/Assets.cshtml @@ -193,7 +193,7 @@
-
@T["Description"]
+

@T["Description"]

@@ -211,7 +211,7 @@
-
@T["Attributes"]
+

@T["Attributes"]

@@ -224,7 +224,7 @@
-
@T["Purchase Information"]
+

@T["Purchase Information"]

@@ -418,7 +418,7 @@
-
@T["Description"]
+

@T["Description"]

@@ -434,7 +434,7 @@
-
@T["Attributes"]
+

@T["Attributes"]

@@ -50,7 +50,7 @@

-
@T["Layout"]
+

@T["Layout"]


`; await renderBarcodePreview("printPreviewContainer"); @@ -67,7 +67,7 @@ const asset = json.assetsModel; assetCard.innerHTML = `
-
Asset ${i + 1}: ${asset.Name}
+

Asset ${i + 1}: ${asset.Name}

@T["Asset ID"]: ${asset.Cn}

@@ -87,7 +87,7 @@ } else { assetCard.innerHTML = `
-
Asset ${i + 1}: @T["Empty"]
+

Asset ${i + 1}: @T["Empty"]

diff --git a/src/wwwroot/css/site.css b/src/wwwroot/css/site.css index 7cf2b45..6897915 100644 --- a/src/wwwroot/css/site.css +++ b/src/wwwroot/css/site.css @@ -68,3 +68,7 @@ body { h3.modal-title { font-size: 1.25rem; } + +h4.fw-bold, h4.card-title { + font-size: 1rem; +}