casino/frontend/src/app/feature/transaction-history/transaction-history.component.css
csimonis 157e774e86
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Successful in 46s
CI / prettier (pull_request) Failing after 52s
CI / eslint (pull_request) Failing after 58s
CI / test-build (pull_request) Successful in 1m1s
feat(transaction-history): add disabled state styling for buttons
2025-04-23 11:54:54 +02:00

9 lines
144 B
CSS

button[disabled] {
cursor: not-allowed;
background-color: #ccc;
box-shadow: none;
}
button[disabled]:hover {
background-color: #ccc;
}