feat(transaction-history): add disabled state styling for buttons
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

This commit is contained in:
csimonis 2025-04-23 11:54:30 +02:00
parent 03d67ef362
commit 157e774e86
3 changed files with 30 additions and 42 deletions

View file

@ -0,0 +1,9 @@
button[disabled] {
cursor: not-allowed;
background-color: #ccc;
box-shadow: none;
}
button[disabled]:hover {
background-color: #ccc;
}