From: Radek Czajka Date: Sat, 12 Oct 2019 23:18:14 +0000 (+0200) Subject: Remove non-ascii chars from SCSS to keep pipeline from tripping. X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/4186d2daff23d0de25e2cdaeb6704d0dfe0feec1 Remove non-ascii chars from SCSS to keep pipeline from tripping. --- diff --git a/src/wiki/static/wiki/scss/splitter.scss b/src/wiki/static/wiki/scss/splitter.scss index 68e8b79c..0dfd5cdf 100644 --- a/src/wiki/static/wiki/scss/splitter.scss +++ b/src/wiki/static/wiki/scss/splitter.scss @@ -20,8 +20,8 @@ &.active { p { - &::before {content: "▼";} - &::after {content: "▼";} + &::before {content: "\25bc";} + &::after {content: "\25bc";} } } @@ -38,11 +38,11 @@ white-space: nowrap; &::before { - content: "▲"; + content: "\25b2"; margin-right: 1em; } &::after { - content: "▲"; + content: "\25b2"; margin-left: 1em; } }