From 01909692a7797ac99bb68688ac84a71205ed611a Mon Sep 17 00:00:00 2001 From: Carlos Fernandez Date: Sun, 12 Jul 2026 04:47:27 -0400 Subject: [PATCH] Only show button when hovering over the secret section --- styles/less/global/elements.less | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/styles/less/global/elements.less b/styles/less/global/elements.less index a8daa8c3..edc02f9a 100755 --- a/styles/less/global/elements.less +++ b/styles/less/global/elements.less @@ -603,7 +603,7 @@ section.secret { background-color: @red-10; padding: 0; - margin-top: var(--spacer-4); + margin-top: 0.375rem; &.revealed { background-color: @green-10; } @@ -627,6 +627,12 @@ font-size: var(--font-size-10); user-select: none; text-transform: uppercase; + + visibility: hidden; + } + + &:hover button.reveal { + visibility: visible; } } }