diff --git a/pyramid.css b/pyramid.css index f732dda..783a7a0 100644 --- a/pyramid.css +++ b/pyramid.css @@ -21,10 +21,6 @@ z-index: 100; } -.pyramid-layout .card:not(.is-exposed) { - filter: brightness(0.9) grayscale(0.2); -} - .pyramid-bottom-piles { display: flex; width: 100%; diff --git a/pyramid.js b/pyramid.js index 561990e..d8efe78 100644 --- a/pyramid.js +++ b/pyramid.js @@ -188,8 +188,6 @@ // Mark if it's currently playable for visual feedback const exposed = isExposed(card.id); el.classList.toggle('is-exposed', exposed); - // Remove hardcoded opacity, handle via CSS if needed - el.style.opacity = '1'; } index++; }