Only show button when hovering over the secret section

This commit is contained in:
Carlos Fernandez 2026-07-12 04:47:27 -04:00
parent f80fd701e5
commit 01909692a7

View file

@ -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;
}
}
}