From 124204930d03bd62e445d45cb615215370846f09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kooi?= Date: Fri, 31 Mar 2017 15:51:29 +0200 Subject: [PATCH] Fix Dashboard modal close button position. When the page was scrolled down, the modal close button was invisible. This patch sets the close button to `fixed` positioning so it's always in the same place on the screen regardless of scroll, just like the modal background. --- src/scss/_dashboard.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scss/_dashboard.scss b/src/scss/_dashboard.scss index d941c1f36..aaea57a8b 100644 --- a/src/scss/_dashboard.scss +++ b/src/scss/_dashboard.scss @@ -74,7 +74,7 @@ .UppyDashboard-close { @include reset-button; display: none; - position: absolute; + position: fixed; top: 12px; right: 12px; cursor: pointer;