Files
brk/website_next/wallets/layout/style.css
T
2026-06-17 11:25:42 +02:00

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