Browse Source

fix(docs): low fps on scroll on safari (#300)

Eduard Aksamitov 5 years ago
parent
commit
555fff047b
1 changed files with 5 additions and 2 deletions
  1. 5 2
      docs/assets/style.css

+ 5 - 2
docs/assets/style.css

@@ -30,13 +30,16 @@
   width: 90%
   width: 90%
 }
 }
 
 
-.content {
+body::before {
+  content: "";
+  position: fixed;
+  width: 100%;
+  height: 500px;
   background: linear-gradient(
   background: linear-gradient(
     180deg,
     180deg,
     var(--base-background-color-trans),
     var(--base-background-color-trans),
     var(--base-background-color) 500px
     var(--base-background-color) 500px
   ), url('/assets/pattern.svg');
   ), url('/assets/pattern.svg');
-  background-attachment: fixed;
 }
 }
 
 
 @media (min-width: 1200px) {
 @media (min-width: 1200px) {