Skip to content

Commit a905b54

Browse files
authored
feat: 🎸support @font-face
In the `@` `prop` logic, add a check for `@font-face`, as it has different grammar than other `@rule`s. fixes #220
1 parent 602d9c3 commit a905b54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ exports.create = function (config) {
124124
for (var i = 0; i < postponed.length; i++) {
125125
prop = postponed[i];
126126

127-
if (prop[0] === '@') {
127+
if (prop[0] === "@" && prop !== "@font-face") {
128128
renderer.putAt(selector, decls[prop], prop);
129129
} else {
130130
renderer.put(renderer.selector(selector, prop), decls[prop], atrule);

0 commit comments

Comments
 (0)