From f35bc1052a5d84f0e97a8896d7eb8d72cdb36d83 Mon Sep 17 00:00:00 2001 From: ryanml Date: Thu, 27 May 2021 10:27:18 -0700 Subject: [PATCH] Fixing ever-present scrollbar issue on Swaps view (#11182) * Fixing ever-present scrollbar issue on Swaps view * Updating max-height --- ui/pages/swaps/index.scss | 6 +----- ui/pages/swaps/view-quote/index.scss | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/ui/pages/swaps/index.scss b/ui/pages/swaps/index.scss index d1a78b42a..f65cab061 100644 --- a/ui/pages/swaps/index.scss +++ b/ui/pages/swaps/index.scss @@ -31,11 +31,7 @@ height: 100%; width: 100%; overflow-x: hidden; - overflow-y: scroll; - - &--scrollable { - overflow: auto; - } + overflow-y: auto; @media screen and (min-width: 576px) { width: 460px; diff --git a/ui/pages/swaps/view-quote/index.scss b/ui/pages/swaps/view-quote/index.scss index 20c2ea0b4..64d3d59d7 100644 --- a/ui/pages/swaps/view-quote/index.scss +++ b/ui/pages/swaps/view-quote/index.scss @@ -22,7 +22,7 @@ @media screen and (max-width: 576px) { overflow-y: auto; - max-height: 428px; + max-height: 420px; } }