global: private xpub support part 1

This commit is contained in:
nym21
2026-06-16 23:37:03 +02:00
parent 6f430bdb8c
commit 0c7861071d
70 changed files with 5874 additions and 12510 deletions
+38
View File
@@ -0,0 +1,38 @@
main.wallets {
.wallets__results {
display: grid;
gap: 1rem;
overflow-x: auto;
}
.wallets__table {
width: 100%;
min-width: 44rem;
border-collapse: collapse;
font-size: var(--font-size-sm);
line-height: var(--line-height-sm);
th,
td {
padding: 0.75rem;
border-bottom: 1px solid color-mix(in oklch, var(--gray) 22%, transparent);
text-align: left;
vertical-align: top;
}
th {
color: var(--gray);
font-size: var(--font-size-xs);
font-weight: 400;
line-height: var(--line-height-xs);
text-transform: uppercase;
}
code {
overflow-wrap: anywhere;
color: var(--white);
font-family: inherit;
font-size: inherit;
}
}
}