feat: use elysium avatar image for guild hall click button

This commit is contained in:
2026-03-07 12:16:06 -08:00
committed by Naomi Carrigan
parent 25d4a11eeb
commit cddf4fa692
2 changed files with 15 additions and 4 deletions
+5 -1
View File
@@ -49,7 +49,11 @@ export const ClickArea = (): React.JSX.Element => {
type="button" type="button"
aria-label={`Click to earn ${formatNumber(clickPower)} gold`} aria-label={`Click to earn ${formatNumber(clickPower)} gold`}
> >
<img
alt="Guild Hall"
className="click-button-image"
src="https://cdn.nhcarrigan.com/avatars/elysium.png"
/>
</button> </button>
{floats.map((float) => ( {floats.map((float) => (
<span <span
+10 -3
View File
@@ -201,17 +201,25 @@ body {
} }
.click-button { .click-button {
background: linear-gradient(135deg, var(--colour-accent), var(--colour-accent-light)); background: none;
border: none; border: none;
border-radius: 50%; border-radius: 50%;
cursor: pointer; cursor: pointer;
font-size: 3rem;
height: 120px; height: 120px;
overflow: hidden;
padding: 0;
transition: transform 0.1s, box-shadow 0.1s; transition: transform 0.1s, box-shadow 0.1s;
width: 120px; width: 120px;
box-shadow: 0 0 20px rgba(124, 58, 237, 0.4); box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
} }
.click-button-image {
border-radius: 50%;
height: 100%;
object-fit: cover;
width: 100%;
}
.click-button:active { .click-button:active {
transform: scale(0.93); transform: scale(0.93);
box-shadow: 0 0 10px rgba(124, 58, 237, 0.2); box-shadow: 0 0 10px rgba(124, 58, 237, 0.2);
@@ -3000,7 +3008,6 @@ body {
/* Smaller click button for the compact strip */ /* Smaller click button for the compact strip */
.click-button { .click-button {
font-size: 2rem;
height: 64px; height: 64px;
width: 64px; width: 64px;
} }