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 {
201201 }
202202 if ( this . #config. options . minWidth && Breakpoints . getMinWidths ( option ) ) {
203203 this . #customProperties. push ( {
204- mediaFeature : "minWidth " ,
204+ mediaFeature : "min-width " ,
205205 name : `${ baseName } -minWidth` ,
206206 value : Breakpoints . getMinWidths ( option ) ,
207207 } ) ;
208208 }
209209 if ( this . #config. options . maxWidth && Breakpoints . getMaxWidths ( option ) ) {
210210 this . #customProperties. push ( {
211- mediaFeature : "maxWidth " ,
211+ mediaFeature : "max-width " ,
212212 name : `${ baseName } -maxWidth` ,
213213 value : Breakpoints . getMaxWidths ( option ) ,
214214 } ) ;
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export interface Breakpoint {
6464}
6565
6666export interface customProperty {
67- mediaFeature ?: "minWidth " | "maxWidth " | "resolution" ;
67+ mediaFeature ?: "min-width " | "max-width " | "resolution" ;
6868 name : string ;
6969 value : string ;
7070}
You can’t perform that action at this time.
0 commit comments