Skip to content

Commit

Permalink
fix style variables
Browse files Browse the repository at this point in the history
  • Loading branch information
undefined-moe committed Aug 30, 2024
1 parent 3fef5e1 commit 47263bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/styles/_{{filename}}.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
{% if not nameAsUnicode %}
{{ cssString }}
{% for name, value in infoData %}
${{ name }}: {{ value.encodedCode }}
{% endfor %}
${{ name }}: '{{ value.encodedCode }}';
{%- endfor %}
{% endif %}
4 changes: 2 additions & 2 deletions src/styles/_{{filename}}.styl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
{% if not nameAsUnicode %}
{{ cssString }}
{% for name, value in infoData %}
${{ name }} = {{ value.encodedCode }}
{% endfor %}
${{ name }} = '{{ value.encodedCode }}'
{%- endfor %}
{% endif %}

0 comments on commit 47263bc

Please sign in to comment.