@@ -105,8 +105,8 @@ postcssCustomMedia({
105
105
106
106
Multiple sources can be passed into this option, and they will be parsed in the
107
107
order they are received. JavaScript files, JSON files, functions, and objects
108
- will need to namespace custom media using the ` customProperties ` or
109
- ` custom-properties ` key.
108
+ will need to namespace custom media using the ` customMedia ` or
109
+ ` custom-media ` key.
110
110
111
111
``` js
112
112
postcssCustomMedia ({
@@ -118,9 +118,9 @@ postcssCustomMedia({
118
118
customMedia: { ' --small-viewport' : ' (max-width: 30em)' }
119
119
},
120
120
() => {
121
- const customProperties = { ' --small-viewport' : ' (max-width: 30em)' };
121
+ const customMedia = { ' --small-viewport' : ' (max-width: 30em)' };
122
122
123
- return { customProperties };
123
+ return { customMedia };
124
124
}
125
125
]
126
126
});
@@ -140,8 +140,8 @@ postcssCustomMedia({
140
140
141
141
Multiple destinations can be passed into this option, and they will be parsed
142
142
in the order they are received. JavaScript files, JSON files, and objects will
143
- need to namespace custom media using the ` customProperties ` or
144
- ` custom-properties ` key.
143
+ need to namespace custom media using the ` customMedia ` or
144
+ ` custom-media ` key.
145
145
146
146
``` js
147
147
const cachedObject = { customMedia: {} };
@@ -153,8 +153,8 @@ postcssCustomMedia({
153
153
' and/then/this.mjs' , // export const customMedia = { '--small-viewport': '(max-width: 30em)' } }
154
154
' and/then/that.json' , // { "custom-media": { "--small-viewport": "(max-width: 30em)" } }
155
155
cachedObject,
156
- customProperties => {
157
- customProperties // { '--small-viewport': '(max-width: 30em)' }
156
+ customMedia => {
157
+ customMedia // { '--small-viewport': '(max-width: 30em)' }
158
158
}
159
159
]
160
160
});
0 commit comments