From 70ce01a5515b21cd05a1d585c1d07e16ca256de0 Mon Sep 17 00:00:00 2001 From: kaipher7 Date: Fri, 24 Apr 2026 08:04:58 -0600 Subject: [PATCH] tweaks --- src/main/resources/templates/create-recipe.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/resources/templates/create-recipe.html b/src/main/resources/templates/create-recipe.html index b088f46..05e7739 100644 --- a/src/main/resources/templates/create-recipe.html +++ b/src/main/resources/templates/create-recipe.html @@ -303,9 +303,10 @@ function showError(input, message) { if (!error) { error = document.createElement('p'); error.className = 'error-message'; - error.style.color = 'red'; + error.style.color = '#CC0C0C'; error.style.fontSize = '0.9em'; error.style.marginTop = '6px'; + error.style.fontWeight = '600'; input.parentElement.appendChild(error); }