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

43 lines
789 B
CSS

main.wallets {
dialog.receive {
width: min(100% - 2rem, 32rem);
> article {
display: grid;
gap: 1rem;
> h2 {
margin: 0;
font-size: var(--font-size-lg);
font-weight: 400;
line-height: var(--line-height-lg);
}
> img {
justify-self: center;
width: min(100%, 18rem);
aspect-ratio: 1;
padding: 1rem;
background: var(--white);
image-rendering: pixelated;
}
> p {
margin: 0;
font-size: var(--font-size-sm);
line-height: var(--line-height-sm);
}
> footer {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: end;
> form {
margin: 0;
}
}
}
}
}