From 227d32be7bdf1c2ddc8ee23609b83ff91d48c1d8 Mon Sep 17 00:00:00 2001 From: Ingvar Stepanyan Date: Fri, 31 Jul 2020 18:33:20 +0100 Subject: [PATCH] Fix install button position Add `position: relative` to the parent `div` that owns the scrollbar, so that Install button positions itself relative to it and not to the whole document. Fixes a bug where button would get rendered on top of a scrollbar. --- src/components/intro/style.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/intro/style.scss b/src/components/intro/style.scss index 4bda5b48..21f3946f 100644 --- a/src/components/intro/style.scss +++ b/src/components/intro/style.scss @@ -33,6 +33,7 @@ height: 100%; box-sizing: border-box; overscroll-behavior: contain; + position: relative; } .logo-container {