helwasm: footer respects the body gutter (use padding-block)

The .foot padding shorthand zeroed the inline padding, overriding .wrap's gutter so
the footer text ran to the window edge. Use padding-block so it lines up with the
body cards.
This commit is contained in:
Oleksandr Kozachuk
2026-06-09 23:54:13 +02:00
parent 7c651d0bb5
commit 4c6884c947
+3 -1
View File
@@ -270,7 +270,9 @@ input.mask.revealed { -webkit-text-security: none; }
.modal textarea:focus { border-color: var(--ocean); }
.modal .row { display: flex; gap: 10px; margin-top: 14px; }
.foot { color: var(--muted); font-family: var(--mono); font-size: 12px; text-align: center; padding: 8px 0 40px; }
/* padding-block only: keep .wrap's inline gutter so the footer lines up with the
body cards instead of running to the window edge. */
.foot { color: var(--muted); font-family: var(--mono); font-size: 12px; text-align: center; padding-block: 8px 40px; }
.foot a { color: var(--ocean); text-decoration: none; border-bottom: 1px solid rgba(27, 65, 97, 0.3); }
.foot a:hover { border-bottom-color: var(--ocean); }