mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-20 03:34:21 -07:00
33 lines
472 B
CSS
33 lines
472 B
CSS
main.wallets {
|
|
.wallets__header {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
justify-content: end;
|
|
}
|
|
|
|
.wallets__actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
justify-content: end;
|
|
}
|
|
|
|
.wallets__content {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 34rem) {
|
|
main.wallets {
|
|
.wallets__header {
|
|
justify-content: start;
|
|
}
|
|
|
|
.wallets__actions {
|
|
justify-content: start;
|
|
}
|
|
}
|
|
}
|