mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-20 03:34:21 -07:00
35 lines
566 B
CSS
35 lines
566 B
CSS
main.wallets {
|
|
> header {
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
justify-content: end;
|
|
|
|
@media (max-width: 34rem) {
|
|
justify-content: start;
|
|
}
|
|
|
|
> div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
justify-content: end;
|
|
|
|
@media (max-width: 34rem) {
|
|
justify-content: start;
|
|
}
|
|
|
|
> button {
|
|
border-color: var(--orange);
|
|
color: var(--black);
|
|
background: var(--orange);
|
|
}
|
|
}
|
|
}
|
|
|
|
> section[aria-live] {
|
|
display: grid;
|
|
gap: 1.5rem;
|
|
}
|
|
}
|