Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
Correct property order to appease the build
Browse files Browse the repository at this point in the history
  • Loading branch information
benschwarz committed May 27, 2014
1 parent 09cb8a4 commit 9e6fab4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sass/_gallery.scss
Expand Up @@ -42,8 +42,8 @@
}

.gallery {
.item:first-of-type { pointer-events: auto; position: static; opacity: 1; } // Set the first item to be visible
.item { pointer-events: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity .5s; }
.item:first-of-type { position: static; pointer-events: auto; opacity: 1; } // Set the first item to be visible
.item { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0; transition: opacity .5s; }

.control-operator { display: none; } // Stop hash links from scrolling up and down

Expand Down

0 comments on commit 9e6fab4

Please sign in to comment.