Files
brk/website_next/wallets/wallet/tabs/style.css
T
2026-06-22 16:42:14 +02:00

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;
}
}
}