@@ -98,48 +98,48 @@ theme_name.lg:
98
98
` ` ` css
99
99
/* Generated CSS file */
100
100
@custom-media --Themename-small-mediaQuery (only screen and (max-width: 47.9375rem));
101
- @custom-media --Themename-small-resolution (2x);
102
- @custom-media --Themename-small-maxWidth (47.9375rem);
101
+ @custom-media --Themename-small-resolution (resolution: 2x);
102
+ @custom-media --Themename-small-maxWidth (max-width: 47.9375rem);
103
103
@custom-media --Themename-medium-mediaQuery (only screen and (min-width: 48rem) and (max-width: 63.9375rem));
104
- @custom-media --Themename-medium-resolution (2x);
105
- @custom-media --Themename-medium-minWidth (48rem);
106
- @custom-media --Themename-medium-maxWidth (63.9375rem);
104
+ @custom-media --Themename-medium-resolution (resolution: 2x);
105
+ @custom-media --Themename-medium-minWidth (min-width: 48rem);
106
+ @custom-media --Themename-medium-maxWidth (max-width: 63.9375rem);
107
107
@custom-media --Themename-large-mediaQuery (only screen and (min-width: 64rem) and (max-width: 89.9375rem));
108
- @custom-media --Themename-large-resolution (2x);
109
- @custom-media --Themename-large-minWidth (64rem);
110
- @custom-media --Themename-large-maxWidth (89.9375rem);
108
+ @custom-media --Themename-large-resolution (resolution: 2x);
109
+ @custom-media --Themename-large-minWidth (min-width: 64rem);
110
+ @custom-media --Themename-large-maxWidth (max-width: 89.9375rem);
111
111
112
112
:root {
113
113
--ThemeName-small-mediaQuery : " only screen and (max-width: 47.9375rem)" ;
114
- --ThemeName-small-resolution : " 2x" ;
115
- --ThemeName-small-maxWidth : " 47.9375rem" ;
114
+ --ThemeName-small-resolution : " resolution: 2x" ;
115
+ --ThemeName-small-maxWidth : " max-width: 47.9375rem" ;
116
116
--ThemeName-medium-mediaQuery : " only screen and (min-width: 48rem) and (max-width: 63.9375rem)" ;
117
- --ThemeName-medium-resolution : " 2x" ;
118
- --ThemeName-medium-minWidth : " 48rem" ;
119
- --ThemeName-medium-maxWidth : " 63.9375rem" ;
117
+ --ThemeName-medium-resolution : " resolution: 2x" ;
118
+ --ThemeName-medium-minWidth : " min-width: 48rem" ;
119
+ --ThemeName-medium-maxWidth : " max-width: 63.9375rem" ;
120
120
--ThemeName-Group-large-mediaQuery : " only screen and (min-width: 64rem) and (max-width: 89.9375rem)" ;
121
- --ThemeName-Group-large-resolution : " 2x" ;
122
- --ThemeName-Group-large-minWidth : " 64rem" ;
123
- --ThemeName-Group-large-maxWidth : " 89.9375rem" ;
121
+ --ThemeName-Group-large-resolution : " resolution: 2x" ;
122
+ --ThemeName-Group-large-minWidth : " min-width: 64rem" ;
123
+ --ThemeName-Group-large-maxWidth : " max-width: 89.9375rem" ;
124
124
}
125
125
```
126
126
127
127
``` js
128
128
// Generated JS file
129
129
const BREAKPOINTS = {
130
130
" ThemeName-small-mediaQuery" : " only screen and (max-width: 47.9375rem)" ,
131
- " ThemeName-small-resolution" : " 2x" ,
132
- " ThemeName-small-maxWidth" : " 47.9375rem" ,
131
+ " ThemeName-small-resolution" : " resolution: 2x" ,
132
+ " ThemeName-small-maxWidth" : " max-width: 47.9375rem" ,
133
133
" ThemeName-medium-mediaQuery" :
134
134
" only screen and (min-width: 48rem) and (max-width: 63.9375rem)" ,
135
- " ThemeName-medium-resolution" : " 2x" ,
136
- " ThemeName-medium-minWidth" : " 48rem" ,
137
- " ThemeName-medium-maxWidth" : " 63.9375rem" ,
135
+ " ThemeName-medium-resolution" : " resolution: 2x" ,
136
+ " ThemeName-medium-minWidth" : " min-width: 48rem" ,
137
+ " ThemeName-medium-maxWidth" : " max-width: 63.9375rem" ,
138
138
" ThemeName-Group-large-mediaQuery" :
139
139
" only screen and (min-width: 64rem) and (max-width: 89.9375rem)" ,
140
- " ThemeName-Group-large-resolution" : " 2x" ,
141
- " ThemeName-Group-large-minWidth" : " 64rem" ,
142
- " ThemeName-Group-large-maxWidth" : " 89.9375rem" ,
140
+ " ThemeName-Group-large-resolution" : " resolution: 2x" ,
141
+ " ThemeName-Group-large-minWidth" : " min-width: 64rem" ,
142
+ " ThemeName-Group-large-maxWidth" : " max-width: 89.9375rem" ,
143
143
};
144
144
export default BREAKPOINTS ;
145
145
```
0 commit comments