Skip to content
This repository was archived by the owner on Feb 13, 2019. It is now read-only.

Escape special character in CSS file #105

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions site/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions site/css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions site/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ $minorfocuscolor: hsl(61, 57%, 38%);

&::before,
&::after {
content: "";
content: "\2736";
padding: 0 0.25em;
color: $bgcolorlesscontrast;
@include remfallback('font-size', 1);
Expand Down Expand Up @@ -628,7 +628,7 @@ footer {

&:not(:first-of-type):nth-of-type(odd)::before,
&:nth-of-type(odd)::after {
content: "";
content: "\2736";
}
}
}
Expand Down