Changed so that players can see each others actionTokens but can't interact with others. (#355)

This commit is contained in:
WBHarry 2025-07-16 20:20:09 +02:00 committed by GitHub
parent b40d053201
commit 3176438293
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 11 deletions

View file

@ -2,7 +2,6 @@
.token-actions {
align-self: stretch;
display: flex;
align-items: top;
justify-content: center;
gap: 16px;
@ -26,6 +25,16 @@
opacity: 0.5;
background: transparent;
}
&.inactive {
background: var(--color-warm-2);
color: var(--color-light-1);
cursor: default;
&:hover {
filter: none;
}
}
}
}