From 35399957178c586e11f0e25037c449099cf1c279 Mon Sep 17 00:00:00 2001 From: natsoni Date: Tue, 4 Aug 2026 10:41:21 +0200 Subject: [PATCH] Fix page jump on mobile when scrolling to footer --- .../accelerations-list/accelerations-list.component.scss | 4 ++++ .../custom-dashboard/custom-dashboard.component.scss | 2 ++ .../federation-addresses-list.component.scss | 4 ++++ .../recent-pegs-list/recent-pegs-list.component.scss | 4 ++++ .../recent-transactions-list.component.scss | 2 ++ frontend/src/app/dashboard/dashboard.component.scss | 1 + 6 files changed, 17 insertions(+) diff --git a/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.scss b/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.scss index 06e1ca48c..7a7d3f8d0 100644 --- a/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.scss +++ b/frontend/src/app/components/acceleration/accelerations-list/accelerations-list.component.scss @@ -97,6 +97,10 @@ tr, td, th { } .widget { + .acceleration-list { + overflow-anchor: none; + } + .txid { width: 30%; overflow: hidden; diff --git a/frontend/src/app/components/custom-dashboard/custom-dashboard.component.scss b/frontend/src/app/components/custom-dashboard/custom-dashboard.component.scss index 4a9ffe94a..d1079621e 100644 --- a/frontend/src/app/components/custom-dashboard/custom-dashboard.component.scss +++ b/frontend/src/app/components/custom-dashboard/custom-dashboard.component.scss @@ -135,6 +135,7 @@ } .latest-transactions { + overflow-anchor: none; width: 100%; text-align: left; table-layout:fixed; @@ -223,6 +224,7 @@ } .lastest-replacements-table { + overflow-anchor: none; width: 100%; text-align: left; table-layout:fixed; diff --git a/frontend/src/app/components/liquid-reserves-audit/federation-addresses-list/federation-addresses-list.component.scss b/frontend/src/app/components/liquid-reserves-audit/federation-addresses-list/federation-addresses-list.component.scss index 33d7c8f78..ddbe1ad61 100644 --- a/frontend/src/app/components/liquid-reserves-audit/federation-addresses-list/federation-addresses-list.component.scss +++ b/frontend/src/app/components/liquid-reserves-audit/federation-addresses-list/federation-addresses-list.component.scss @@ -10,6 +10,10 @@ } } +.widget table { + overflow-anchor: none; +} + tr, td, th { border: 0px; padding-top: 0.65rem; diff --git a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss index 62dd5c336..9baf129e4 100644 --- a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss +++ b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss @@ -4,6 +4,10 @@ margin-top: 13px; } +.widget table { + overflow-anchor: none; +} + tr, td, th { border: 0px; padding-top: 0.65rem; diff --git a/frontend/src/app/components/recent-transactions-list/recent-transactions-list.component.scss b/frontend/src/app/components/recent-transactions-list/recent-transactions-list.component.scss index 41622c43e..936d251a3 100644 --- a/frontend/src/app/components/recent-transactions-list/recent-transactions-list.component.scss +++ b/frontend/src/app/components/recent-transactions-list/recent-transactions-list.component.scss @@ -93,6 +93,8 @@ } .widget .latest-transactions { + overflow-anchor: none; + .table-cell-satoshis { @media (min-width: 768px) { display: none; diff --git a/frontend/src/app/dashboard/dashboard.component.scss b/frontend/src/app/dashboard/dashboard.component.scss index 0ea68475c..6c32feb4b 100644 --- a/frontend/src/app/dashboard/dashboard.component.scss +++ b/frontend/src/app/dashboard/dashboard.component.scss @@ -180,6 +180,7 @@ } .lastest-replacements-table { + overflow-anchor: none; width: 100%; text-align: left; table-layout:fixed;