Remove card transparency and dimming effects in Pyramid mode

This commit is contained in:
chris 2026-05-25 01:06:43 -04:00
parent ea4faa9fcf
commit 5c8357f47b
2 changed files with 0 additions and 6 deletions

View File

@ -21,10 +21,6 @@
z-index: 100; z-index: 100;
} }
.pyramid-layout .card:not(.is-exposed) {
filter: brightness(0.9) grayscale(0.2);
}
.pyramid-bottom-piles { .pyramid-bottom-piles {
display: flex; display: flex;
width: 100%; width: 100%;

View File

@ -188,8 +188,6 @@
// Mark if it's currently playable for visual feedback // Mark if it's currently playable for visual feedback
const exposed = isExposed(card.id); const exposed = isExposed(card.id);
el.classList.toggle('is-exposed', exposed); el.classList.toggle('is-exposed', exposed);
// Remove hardcoded opacity, handle via CSS if needed
el.style.opacity = '1';
} }
index++; index++;
} }