mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-22 12:23:04 -07:00
20 lines
406 B
CSS
20 lines
406 B
CSS
main.wallets {
|
|
.wallets__wallet-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem;
|
|
align-items: end;
|
|
justify-content: end;
|
|
|
|
@media (max-width: 34rem) {
|
|
justify-content: start;
|
|
}
|
|
> button:disabled {
|
|
border-color: color-mix(in oklch, var(--gray) 35%, transparent);
|
|
color: var(--gray);
|
|
background: transparent;
|
|
cursor: default;
|
|
}
|
|
}
|
|
}
|