Skip to content

Commit

Permalink
Supporting space containing directories. Fixes #19
Browse files Browse the repository at this point in the history
  • Loading branch information
klaudiosinani committed Aug 7, 2017
1 parent 71e7bdc commit b6ce0ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ exports.decorateConfig = config => {
termCSS: `
${config.termCSS || ''}
.cursor-node::after {
content: url(file://${cursorContent});
content: url("file://${cursorContent}");
position: absolute;
left: 0;
right: 0;
Expand All @@ -310,7 +310,7 @@ exports.decorateConfig = config => {
css: `
${config.css || ''}
.terms_terms {
background: url(file://${pathToTheme}) center;
background: url("file://${pathToTheme}") center;
background-size: cover;
}
.header_header, .header_windowHeader {
Expand Down

0 comments on commit b6ce0ca

Please sign in to comment.