mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-21 20:12:15 -07:00
35 lines
609 B
CSS
35 lines
609 B
CSS
main.wallets {
|
|
.empty {
|
|
display: grid;
|
|
gap: 1rem;
|
|
place-content: center;
|
|
min-height: calc(100dvh - 2 * var(--offset));
|
|
text-align: center;
|
|
|
|
h1 {
|
|
margin: 0;
|
|
font-size: 4rem;
|
|
font-weight: 400;
|
|
line-height: 1;
|
|
}
|
|
|
|
p {
|
|
max-width: 31rem;
|
|
margin: 0;
|
|
color: var(--gray);
|
|
font-size: var(--font-size-base);
|
|
line-height: var(--line-height-base);
|
|
}
|
|
|
|
> menu {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem;
|
|
justify-content: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
}
|
|
}
|