From baaaa531389c0a176628b6d8d5bd8f6b0961da5d Mon Sep 17 00:00:00 2001 From: Mark Lawlor Date: Fri, 15 Aug 2025 09:45:43 +1000 Subject: [PATCH] fix: allow container only rules --- src/compiler/stylesheet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/stylesheet.ts b/src/compiler/stylesheet.ts index 5d73e916..d96f8c9f 100644 --- a/src/compiler/stylesheet.ts +++ b/src/compiler/stylesheet.ts @@ -431,7 +431,7 @@ export class StylesheetBuilder { return; } - if (!this.rule.d && !this.rule.v) { + if (!this.rule.d && !this.rule.v && !this.rule.c) { return; }