mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-16 17:59:45 -07:00
64 lines
1.2 KiB
CSS
64 lines
1.2 KiB
CSS
main.wallets {
|
|
.wallets__history-button {
|
|
height: 2rem;
|
|
border: 1px solid color-mix(in oklch, var(--gray) 36%, transparent);
|
|
border-radius: 0.375rem;
|
|
padding: 0 0.625rem;
|
|
color: var(--white);
|
|
background: transparent;
|
|
font: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.wallets__history-button:disabled {
|
|
color: var(--gray);
|
|
cursor: progress;
|
|
}
|
|
|
|
.wallets__history-button:focus-visible {
|
|
outline: 2px solid var(--orange);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
.wallets__history {
|
|
display: grid;
|
|
gap: 0.75rem;
|
|
padding: 0.25rem 0 0.75rem;
|
|
}
|
|
|
|
.wallets__history-message {
|
|
margin: 0;
|
|
color: var(--gray);
|
|
}
|
|
|
|
.wallets__history-list {
|
|
display: grid;
|
|
gap: 0.5rem;
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
|
|
li {
|
|
display: grid;
|
|
grid-template-columns:
|
|
minmax(5.5rem, 0.7fr)
|
|
minmax(4.75rem, 0.6fr)
|
|
minmax(8rem, 0.8fr)
|
|
minmax(7.5rem, 0.8fr)
|
|
minmax(10rem, 1fr);
|
|
gap: 0.75rem 1rem;
|
|
align-items: baseline;
|
|
}
|
|
|
|
strong {
|
|
color: var(--white);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
span {
|
|
color: var(--gray);
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|