Browse Source

No transition when section it's first-child

@soyjavi 13 years ago
parent
commit
683b16d019
1 changed files with 6 additions and 1 deletions
  1. 6 1
      src/stylesheets/lungo.media.phone.styl

+ 6 - 1
src/stylesheets/lungo.media.phone.styl

@@ -45,8 +45,13 @@
 
       /* Transition: SLIDE */
       &[data-transition="slide"]
-        transform translateX(100%)
         visibility: visible
+
+        &:first-child
+          transform translateX(0%)
+        &:not(first-child)
+          transform translateX(100%)
+
         &.show
           transform translateX(0%)
         &.hide