Remove non-ascii chars from SCSS to keep pipeline from tripping.
authorRadek Czajka <rczajka@rczajka.pl>
Sat, 12 Oct 2019 23:18:14 +0000 (01:18 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Sat, 12 Oct 2019 23:18:14 +0000 (01:18 +0200)
src/wiki/static/wiki/scss/splitter.scss

index 68e8b79..0dfd5cd 100644 (file)
@@ -20,8 +20,8 @@
 
         &.active {
             p {
-                &::before {content: "";}
-                &::after {content: "";}
+                &::before {content: "\25bc";}
+                &::after {content: "\25bc";}
             }
         }
         
             white-space: nowrap;
 
             &::before {
-                content: "";
+                content: "\25b2";
                 margin-right: 1em;
             }
             &::after {
-                content: "";
+                content: "\25b2";
                 margin-left: 1em;
             }
         }