Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 0bc75c6

Browse files
committed
fix(custom-html-type.ts): Fixed to be able to wrap selectors in global media queries.
1 parent 58aa48e commit 0bc75c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_internal/types/custom/custom-html-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type AtKeyframes = {
3737

3838
export type MediaQuery = `@media ${string}`;
3939
export type MediaQueryType = {
40-
[key in MediaQuery]?: CustomCSSProperties | AtKeyframes;
40+
[key in MediaQuery]?: CustomCSSProperties | CustomHTMLType;
4141
};
4242

4343
export type CustomHTMLType = HTMLType | ClassNameType | AttributeType | ConsecutiveType | PseudoType | AtKeyframes | MediaQueryType;

0 commit comments

Comments
 (0)