Browse Source

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.
René Kooi 8 years ago
parent
commit
124204930d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/scss/_dashboard.scss

+ 1 - 1
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;