From 666cc732bfec0c6ba7fffd8e934bd29716bf9d33 Mon Sep 17 00:00:00 2001 From: moanos Date: Fri, 18 Apr 2025 09:27:26 +0200 Subject: [PATCH] feat: Style main result --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index 65ea810..42ea69a 100644 --- a/src/index.js +++ b/src/index.js @@ -427,6 +427,7 @@ function updateNumRatsCalculator() { resultsDiv.innerHTML = ""; const p = document.createElement('p'); p.textContent = i18next.t("cage-for-x-rats", {"num_rats": Math.floor(allowedNumRats)}); + p.className = " is-size-5 has-text-weight-semibold" resultsDiv.appendChild(p); resultsDiv.appendChild(result);