20 lines
228 B
CSS
20 lines
228 B
CSS
.transactionTable {
|
|
tbody tr {
|
|
cursor: pointer;
|
|
}
|
|
|
|
td {
|
|
.date {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.amount {
|
|
font-family: monospace;
|
|
}
|
|
}
|
|
|
|
.disabled td {
|
|
color: var(--bulma-text-light);
|
|
}
|
|
}
|