mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-30 22:09:00 -07:00
33 lines
516 B
CSS
33 lines
516 B
CSS
main.wallets {
|
|
.tabs {
|
|
display: grid;
|
|
gap: 1rem;
|
|
min-width: 0;
|
|
|
|
:is(h1, h2, h3, h4, h5, h6) {
|
|
font-family: var(--font-mono);
|
|
}
|
|
|
|
> nav {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
overflow-x: auto;
|
|
scroll-snap-type: x mandatory;
|
|
|
|
> button {
|
|
flex: 0 0 auto;
|
|
scroll-snap-align: start;
|
|
|
|
&[aria-selected="true"] {
|
|
color: var(--black);
|
|
background: var(--white);
|
|
}
|
|
}
|
|
}
|
|
|
|
> div {
|
|
min-width: 0;
|
|
}
|
|
}
|
|
}
|