mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-19 19:26:12 -07:00
46 lines
930 B
CSS
46 lines
930 B
CSS
main.wallets {
|
|
.wallets__receive-dialog {
|
|
width: min(100% - 2rem, 32rem);
|
|
|
|
> div {
|
|
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;
|
|
}
|
|
|
|
> div:first-of-type {
|
|
color: var(--white);
|
|
font-size: var(--font-size-sm);
|
|
line-height: var(--line-height-sm);
|
|
}
|
|
|
|
> div:last-of-type {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
justify-content: end;
|
|
|
|
> button:first-child {
|
|
border-color: var(--orange);
|
|
color: var(--black);
|
|
background: var(--orange);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|