Преглед изворни кода

fix(style): workaround mobile browser issues with fixed bg

Revert the parallax-like fixed background effect on mobile to scroll based attachment.
George Cushen пре 4 година
родитељ
комит
05f70db041
1 измењених фајлова са 7 додато и 1 уклоњено
  1. 7 1
      wowchemy/assets/scss/wowchemy/_widgets.scss

+ 7 - 1
wowchemy/assets/scss/wowchemy/_widgets.scss

@@ -76,10 +76,16 @@
   background-size: cover;
 }
 
-/* Create a parallax-like scrolling effect. */
+/* Create a parallax-like scrolling effect on desktop browsers. */
 .parallax {
   background-attachment: fixed;
 }
+// Workaround issue with mobile browser support for fixed parallax background.
+@media (min-width: 768px) {
+  .parallax {
+    background-attachment: scroll;
+  }
+}
 
 .home-section:first-of-type {
   padding-top: 50px;