This commit is contained in:
nym21
2026-06-23 18:47:51 +02:00
parent 8d7ef8da61
commit 9879a986aa
7 changed files with 22 additions and 13 deletions
+10 -1
View File
@@ -1,14 +1,23 @@
main.wallets {
> footer {
position: fixed;
right: var(--page-x);
bottom: var(--page-x);
left: var(--page-x);
z-index: 1;
display: flex;
gap: 1rem;
align-items: center;
justify-content: space-between;
align-self: end;
pointer-events: none;
@media (max-width: 34rem) {
justify-content: center;
}
> button {
pointer-events: auto;
}
}
> article {
Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 KiB

+2 -2
View File
@@ -5,10 +5,10 @@ main.wallets {
display: grid;
gap: 1.5rem;
align-content: start;
grid-template-rows: auto minmax(0, 1fr) auto;
grid-template-rows: auto minmax(0, 1fr);
width: min(100%, var(--content-width));
margin-inline: auto;
padding: var(--offset) var(--page-x);
padding: var(--offset) var(--page-x) calc(var(--offset) + 3rem);
scroll-padding-top: var(--offset);
output {