File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -201,14 +201,14 @@ module.exports = class Breakpoints {
201
201
}
202
202
if ( this . #config. options . minWidth && Breakpoints . getMinWidths ( option ) ) {
203
203
this . #customProperties. push ( {
204
- mediaFeature : "minWidth " ,
204
+ mediaFeature : "min-width " ,
205
205
name : `${ baseName } -minWidth` ,
206
206
value : Breakpoints . getMinWidths ( option ) ,
207
207
} ) ;
208
208
}
209
209
if ( this . #config. options . maxWidth && Breakpoints . getMaxWidths ( option ) ) {
210
210
this . #customProperties. push ( {
211
- mediaFeature : "maxWidth " ,
211
+ mediaFeature : "max-width " ,
212
212
name : `${ baseName } -maxWidth` ,
213
213
value : Breakpoints . getMaxWidths ( option ) ,
214
214
} ) ;
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export interface Breakpoint {
64
64
}
65
65
66
66
export interface customProperty {
67
- mediaFeature ?: "minWidth " | "maxWidth " | "resolution" ;
67
+ mediaFeature ?: "min-width " | "max-width " | "resolution" ;
68
68
name : string ;
69
69
value : string ;
70
70
}
You can’t perform that action at this time.
0 commit comments