Browse Source

chore(docs): Attempt to fix sass compilation issue

Michael Bromley 2 years ago
parent
commit
da24628ce8
1 changed files with 5 additions and 5 deletions
  1. 5 5
      docs/assets/styles/_mixins.scss

+ 5 - 5
docs/assets/styles/_mixins.scss

@@ -36,17 +36,17 @@
         height: 10px;
         height: 10px;
     }
     }
     &::-webkit-scrollbar-corner {
     &::-webkit-scrollbar-corner {
-        background-color: hsl(0 0% 90%);
+        background-color: #{'hsl(0 0% 90%)'};
     }
     }
     &::-webkit-scrollbar-thumb {
     &::-webkit-scrollbar-thumb {
-        background-color: hsl(0 0% 75%);
-        border: 2px solid hsl(0 0% 90%);
+        background-color: #{'hsl(0 0% 75%)'};
+        border: 2px solid #{'hsl(0 0% 90%)'};
         border-radius: 10px;
         border-radius: 10px;
     }
     }
     &::-webkit-scrollbar-thumb:hover {
     &::-webkit-scrollbar-thumb:hover {
-        background-color: hsl(0 0% 65%);
+        background-color: #{'hsl(0 0% 65%)'}
     }
     }
     &::-webkit-scrollbar-track {
     &::-webkit-scrollbar-track {
-        background-color: hsl(0 0% 90%);
+        background-color: #{'hsl(0 0% 90%)'}
     }
     }
 }
 }