Skip to content

Commit

Permalink
Merge pull request #24 from jhen0409/more-platforms
Browse files Browse the repository at this point in the history
Add support more media types of platform
  • Loading branch information
kristerkari committed Jul 4, 2018
2 parents c1b9c87 + 8946d94 commit 34e6ce9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/transforms/media-queries/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ export const defaultTypes = [
"tv",
];
export const cssnextMediaQueryTypes = ["pointer", "hover", "block-overflow"];
export const reactNativeMediaQueryTypes = ["android", "ios"];
export const reactNativeMediaQueryTypes = [
"android",
"dom",
"ios",
"macos",
"web",
"windows",
];
export const mediaQueryTypes = defaultTypes
.concat(cssnextMediaQueryTypes)
.concat(reactNativeMediaQueryTypes);

0 comments on commit 34e6ce9

Please sign in to comment.