Files
brk/website_next/wallets/selector/style.css
T
2026-06-18 22:39:28 +02:00

44 lines
865 B
CSS

main.wallets {
.wallets__selector {
min-width: 0;
> div {
display: flex;
gap: 1rem;
min-width: 0;
overflow-x: auto;
padding-bottom: 0.25rem;
overscroll-behavior-inline: contain;
scroll-padding-inline: var(--page-x);
scroll-snap-type: x proximity;
> button {
flex: 0 0 auto;
height: auto;
scroll-snap-align: center;
border: 0;
padding: 0;
color: var(--white);
background: transparent;
font-size: 4rem;
font-weight: 400;
line-height: 1;
opacity: 0.48;
cursor: pointer;
@media (max-width: 56rem) {
font-size: 3rem;
}
@media (max-width: 34rem) {
font-size: 2.5rem;
}
&[aria-pressed="true"] {
opacity: 1;
}
}
}
}
}