@pandacss/studio 0.15.0 → 0.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/studio.js CHANGED
@@ -33,10 +33,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
33
33
  ));
34
34
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
35
35
 
36
- // ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.1.6/node_modules/tsup/assets/cjs_shims.js
36
+ // ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.2.2/node_modules/tsup/assets/cjs_shims.js
37
37
  var getImportMetaUrl, importMetaUrl;
38
38
  var init_cjs_shims = __esm({
39
- "../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.1.6/node_modules/tsup/assets/cjs_shims.js"() {
39
+ "../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.2.2/node_modules/tsup/assets/cjs_shims.js"() {
40
40
  "use strict";
41
41
  getImportMetaUrl = () => typeof document === "undefined" ? new URL("file:" + __filename).href : document.currentScript && document.currentScript.src || new URL("main.js", document.baseURI).href;
42
42
  importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
package/dist/studio.mjs CHANGED
@@ -34,12 +34,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
34
34
  mod
35
35
  ));
36
36
 
37
- // ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.1.6/node_modules/tsup/assets/esm_shims.js
37
+ // ../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.2.2/node_modules/tsup/assets/esm_shims.js
38
38
  import { fileURLToPath } from "url";
39
39
  import path from "path";
40
40
  var getFilename, getDirname, __dirname;
41
41
  var init_esm_shims = __esm({
42
- "../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.1.6/node_modules/tsup/assets/esm_shims.js"() {
42
+ "../../node_modules/.pnpm/tsup@7.1.0_postcss@8.4.27_typescript@5.2.2/node_modules/tsup/assets/esm_shims.js"() {
43
43
  "use strict";
44
44
  getFilename = () => fileURLToPath(import.meta.url);
45
45
  getDirname = () => path.dirname(getFilename());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/studio",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "The automated token documentation for Panda CSS",
5
5
  "main": "dist/studio.js",
6
6
  "module": "dist/studio.mjs",
@@ -33,19 +33,19 @@
33
33
  "react": "18.2.0",
34
34
  "react-dom": "18.2.0",
35
35
  "vite": "4.4.9",
36
- "@pandacss/types": "0.15.0",
37
- "@pandacss/config": "0.15.0",
38
- "@pandacss/shared": "0.15.0",
39
- "@pandacss/token-dictionary": "0.15.0",
40
- "@pandacss/logger": "0.15.0",
41
- "@pandacss/node": "0.15.0"
36
+ "@pandacss/types": "0.15.1",
37
+ "@pandacss/config": "0.15.1",
38
+ "@pandacss/shared": "0.15.1",
39
+ "@pandacss/token-dictionary": "0.15.1",
40
+ "@pandacss/logger": "0.15.1",
41
+ "@pandacss/node": "0.15.1"
42
42
  },
43
43
  "devDependencies": {
44
- "@types/react": "18.2.18",
44
+ "@types/react": "18.2.22",
45
45
  "@types/react-dom": "18.2.7",
46
46
  "@vitejs/plugin-react": "4.0.4",
47
47
  "execa": "7.2.0",
48
- "@pandacss/dev": "0.15.0"
48
+ "@pandacss/dev": "0.15.1"
49
49
  },
50
50
  "scripts": {
51
51
  "codegen": "panda",
@@ -210,7 +210,7 @@ var hypenateProperty = memo((property) => {
210
210
  });
211
211
 
212
212
  // src/slot.ts
213
- var getSlotRecipes = (recipe) => {
213
+ var getSlotRecipes = (recipe = {}) => {
214
214
  const init = (slot) => ({
215
215
  className: [recipe.className, slot].filter(Boolean).join("__"),
216
216
  base: recipe.base?.[slot] ?? {},
@@ -218,7 +218,8 @@ var getSlotRecipes = (recipe) => {
218
218
  defaultVariants: recipe.defaultVariants ?? {},
219
219
  compoundVariants: recipe.compoundVariants ? getSlotCompoundVariant(recipe.compoundVariants, slot) : []
220
220
  });
221
- const recipeParts = recipe.slots.map((slot) => [slot, init(slot)]);
221
+ const slots = recipe.slots ?? [];
222
+ const recipeParts = slots.map((slot) => [slot, init(slot)]);
222
223
  for (const [variantsKey, variantsSpec] of Object.entries(recipe.variants ?? {})) {
223
224
  for (const [variantKey, variantSpec] of Object.entries(variantsSpec)) {
224
225
  recipeParts.forEach(([slot, slotRecipe]) => {
@@ -37,7 +37,8 @@ function cvaClass() {
37
37
  })
38
38
  })
39
39
 
40
- PandaComponent.displayName = `panda.${Dynamic}`
40
+ const name = (typeof Dynamic === 'string' ? Dynamic : Dynamic.displayName || Dynamic.name) || 'Component'
41
+ PandaComponent.displayName = `panda.${name}`
41
42
  return PandaComponent
42
43
  }
43
44
 
@@ -20,8 +20,8 @@
20
20
  'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
21
21
  'Noto Color Emoji';
22
22
  -webkit-text-size-adjust: 100%;
23
- -webkit-text-size-adjust: 100%;
24
23
  -webkit-font-smoothing: antialiased;
24
+ -moz-osx-font-smoothing: grayscale;
25
25
  -moz-tab-size: 4;
26
26
  tab-size: 4;
27
27
  font-family: var(--global-font-body, var(--font-fallback));
@@ -163,24 +163,39 @@
163
163
  font-family: var(--global-font-mono, var(--font-fallback));
164
164
  }
165
165
 
166
- [type='search'] {
166
+
167
+ input[type="text"],
168
+ input[type="email"],
169
+ input[type="search"],
170
+ input[type="password"] {
171
+ -webkit-appearance: none;
172
+ -moz-appearance: none;
173
+ }
174
+
175
+ input[type='search'] {
167
176
  -webkit-appearance: textfield;
168
177
  outline-offset: -2px;
169
178
  }
170
179
 
171
- ::-webkit-search-decoration {
180
+ ::-webkit-search-decoration,
181
+ ::-webkit-search-cancel-button {
172
182
  -webkit-appearance: none;
173
183
  }
174
184
 
175
185
  ::-webkit-file-upload-button {
176
186
  -webkit-appearance: button;
187
+ font: inherit;
177
188
  }
178
189
 
179
- ::-webkit-inner-spin-button,
180
- ::-webkit-outer-spin-button {
190
+ input[type="number"]::-webkit-inner-spin-button,
191
+ input[type="number"]::-webkit-outer-spin-button {
181
192
  height: auto;
182
193
  }
183
194
 
195
+ input[type='number']{
196
+ -moz-appearance: textfield;
197
+ }
198
+
184
199
  :-moz-ui-invalid {
185
200
  box-shadow: none;
186
201
  }
@@ -11,110 +11,6 @@
11
11
  @import './tokens/keyframes.css';
12
12
 
13
13
  @layer utilities {
14
- .styles\:text_red\! {
15
- color: red !important
16
- }
17
-
18
- .styles\:fs_30px\! {
19
- font-size: 30px !important
20
- }
21
-
22
- .styles\:bg_red\.300 {
23
- background: var(--colors-red-300)
24
- }
25
-
26
- .styles\:w_20px {
27
- width: 20px
28
- }
29
-
30
- .styles\:w_70px {
31
- width: 70px
32
- }
33
-
34
- .styles\:w_50px {
35
- width: 50px
36
- }
37
-
38
- [dir=rtl] .styles\:rtl\:ml_-4 {
39
- margin-left: calc(var(--spacing-4) * -1)
40
- }
41
-
42
- .styles\:light\:text_red.light, .light .styles\:light\:text_red {
43
- color: red
44
- }
45
-
46
- .styles\:dark\:text_green.dark, .dark .styles\:dark\:text_green {
47
- color: green
48
- }
49
-
50
- .styles\:dark\:opacity_slate400.dark, .dark .styles\:dark\:opacity_slate400 {
51
- opacity: slate400
52
- }
53
-
54
- .styles\:left_20px,.styles\:\[\&_\>_p\]\:left_20px > p {
55
- left: 20px
56
- }
57
-
58
- .styles\:\[\&_\>_p\]\:light\:bg_red400 > p.light, .light .styles\:\[\&_\>_p\]\:light\:bg_red400 > p {
59
- background: red400
60
- }
61
-
62
- .styles\:\[\&_\>_p\]\:dark\:bg_green500 > p.dark, .dark .styles\:\[\&_\>_p\]\:dark\:bg_green500 > p {
63
- background: green500
64
- }
65
-
66
- [dir=rtl] .styles\:\[\&_\>_p\]\:rtl\:font_sans > p {
67
- font: sans
68
- }
69
-
70
- .styles\:\[\&\:\:placeholder\]\:left_40px::placeholder {
71
- left: 40px
72
- }
73
-
74
- .styles\:\[\&\:\:placeholder\]\:bg_red400::placeholder {
75
- background: red400
76
- }
77
-
78
- .styles\:all_unset {
79
- all: unset
80
- }
81
-
82
- .styles\:bg_red {
83
- background-color: red
84
- }
85
-
86
- .styles\:border_none {
87
- border: var(--borders-none)
88
- }
89
-
90
- .styles\:p_\$3_\$3 {
91
- padding: $3 $3
92
- }
93
-
94
- .styles\:rounded_\$button {
95
- border-radius: $button
96
- }
97
-
98
- .styles\:fs_\$xsmall {
99
- font-size: $xsmall
100
- }
101
-
102
- .styles\:cursor_pointer {
103
- cursor: pointer
104
- }
105
-
106
- .styles\:\[\&_\+_span\]\:ml_\$2 + span {
107
- margin-left: $2
108
- }
109
-
110
- .test .styles\:\[\.test_\&\]\:bg_blue {
111
- background-color: blue
112
- }
113
-
114
- .styles\:\[\&_\.my-class\]\:text_red .my-class,.styles\:\[\&_span\]\:text_red span,.styles\:\[\&_kbd\]\:text_red kbd {
115
- color: red
116
- }
117
-
118
14
  .w_26px {
119
15
  width: 26px;
120
16
  }
@@ -1064,14 +960,6 @@
1064
960
  outline-color: var(--colors-neutral-400);
1065
961
  }
1066
962
 
1067
- .styles\:\[\&\:focus\,_\&\:hover\]\:shadow_none:focus, .styles\:\[\&\:focus\,_\&\:hover\]\:shadow_none:hover {
1068
- box-shadow: none
1069
- }
1070
-
1071
- :focus > .styles\:\[\:focus_\>_\&\]\:text_white {
1072
- color: var(--colors-white)
1073
- }
1074
-
1075
963
  .hover\:bg_gray\.100:where(:hover, [data-hover]) {
1076
964
  background-color: var(--colors-gray-100);
1077
965
  }
@@ -1108,18 +996,6 @@
1108
996
  border-bottom-color: var(--colors-black);
1109
997
  }
1110
998
 
1111
- input:hover .styles\:\[input\:hover_\&\]\:bg_red400 {
1112
- background: red400
1113
- }
1114
-
1115
- .styles\:hover\:bg_pink\.400:is(:hover, [data-hover]) {
1116
- background: var(--colors-pink-400)
1117
- }
1118
-
1119
- .styles\:hover\:text_pink\.400:is(:hover, [data-hover]) {
1120
- color: var(--colors-pink-400)
1121
- }
1122
-
1123
999
  .\[\&\:hover\]\:bg_\#4049f0:hover {
1124
1000
  background: #4049f0;
1125
1001
  }
@@ -1132,78 +1008,6 @@
1132
1008
  opacity: 0.8;
1133
1009
  }
1134
1010
 
1135
- @media screen and (min-width: 40em) {
1136
- [dir=ltr] .styles\:ltr\:sm\:ml_4 {
1137
- margin-left: var(--spacing-4)
1138
- }
1139
-
1140
- [dir=rtl] .styles\:sm\:rtl\:top_20px {
1141
- top: 20px
1142
- }
1143
- }
1144
-
1145
- @media screen and (min-width: 40em) {
1146
- .styles\:\[\&\:\:placeholder\]\:sm\:text_left::placeholder {
1147
- text-align: left
1148
- }
1149
- }
1150
-
1151
- @media screen and (min-width: 40em) {
1152
- .styles\:sm\:hover\:top_50px:is(:hover, [data-hover]) {
1153
- top: 50px
1154
- }
1155
- }
1156
-
1157
- @media screen and (min-width: 40em) {
1158
- [dir=ltr] .styles\:\[\&_\>_p\]\:ltr\:dark\:sm\:hover\:font_serif > p:is(:hover, [data-hover]).dark, .dark [dir=ltr] .styles\:\[\&_\>_p\]\:ltr\:dark\:sm\:hover\:font_serif > p:is(:hover, [data-hover]) {
1159
- font: serif
1160
- }
1161
- }
1162
-
1163
- @media screen and (min-width: 40em) {
1164
- input:hover .styles\:\[input\:hover_\&\]\:sm\:fs_14px {
1165
- font-size: 14px
1166
- }
1167
- }
1168
-
1169
- @media screen and (min-width: 40em) {
1170
- .styles\:hover\:sm\:dark\:bg_red\.300:is(:hover, [data-hover]).dark, .dark .styles\:hover\:sm\:dark\:bg_red\.300:is(:hover, [data-hover]) {
1171
- background: var(--colors-red-300)
1172
- }
1173
- }
1174
-
1175
- @media screen and (min-width: 40em) {
1176
- .styles\:hover\:disabled\:sm\:bg_red\.300:is(:hover, [data-hover]):is(:disabled, [disabled], [data-disabled]) {
1177
- background: var(--colors-red-300)
1178
- }
1179
- }
1180
-
1181
- @media screen and (min-width: 40em) {
1182
- .styles\:sm\:w_60px {
1183
- width: 60px
1184
- }
1185
- }
1186
-
1187
- @media (min-width: 768px) {
1188
- .styles\:\[\@media_\(min-width\:_768px\)\]\:bg_green {
1189
- background-color: green
1190
- }
1191
-
1192
- .styles\:\[\@media_\(min-width\:_768px\)\]\:fs_\$small {
1193
- font-size: $small
1194
- }
1195
-
1196
- .styles\:\[\@media_\(min-width\:_768px\)\]\:\[\&\:hover\]\:bg_yellow:hover {
1197
- background-color: yellow
1198
- }
1199
- }
1200
-
1201
- @media screen and (min-width: 48em) {
1202
- .styles\:\[\&_\>_p\]\:md\:left_40px > p,.styles\:md\:left_40px {
1203
- left: 40px
1204
- }
1205
- }
1206
-
1207
1011
  @media screen and (min-width: 768px) {
1208
1012
  .md\:px_6 {
1209
1013
  padding-inline: var(--spacing-6)
@@ -1215,42 +1019,4 @@
1215
1019
  padding-inline: var(--spacing-8)
1216
1020
  }
1217
1021
  }
1218
-
1219
- @media screen and (min-width: 64em) {
1220
- .styles\:lg\:top_120px {
1221
- top: 120px
1222
- }
1223
-
1224
- input:hover .styles\:\[input\:hover_\&\]\:lg\:fs_18px {
1225
- font-size: 18px
1226
- }
1227
- }
1228
-
1229
- @media base {
1230
- .styles\:\[\@media_base\]\:\[\&\:hover\]\:left_40px:hover {
1231
- left: 40px
1232
- }
1233
- }
1234
-
1235
- @media base {
1236
- @media screen and (min-width: 40em) {
1237
- .styles\:\[\@media_base\]\:\[\&\:hover\]\:sm\:text_left:hover {
1238
- text-align: left
1239
- }
1240
- }
1241
- }
1242
-
1243
- @media base {
1244
- .styles\:\[\@media_base\]\:left_40px {
1245
- left: 40px
1246
- }
1247
- }
1248
-
1249
- @media base {
1250
- @media screen and (min-width: 40em) {
1251
- .styles\:\[\@media_base\]\:sm\:text_left {
1252
- text-align: left
1253
- }
1254
- }
1255
- }
1256
1022
  }
@@ -1,216 +0,0 @@
1
- @layer utilities {
2
- .styles\:text_red\! {
3
- color: red !important
4
- }
5
-
6
- .styles\:fs_30px\! {
7
- font-size: 30px !important
8
- }
9
-
10
- .styles\:bg_red\.300 {
11
- background: var(--colors-red-300)
12
- }
13
-
14
- .styles\:w_20px {
15
- width: 20px
16
- }
17
-
18
- .styles\:w_70px {
19
- width: 70px
20
- }
21
-
22
- .styles\:w_50px {
23
- width: 50px
24
- }
25
- @media screen and (min-width: 40em) {
26
- [dir=ltr] .styles\:ltr\:sm\:ml_4 {
27
- margin-left: var(--spacing-4)
28
- }
29
- }
30
- [dir=rtl] .styles\:rtl\:ml_-4 {
31
- margin-left: calc(var(--spacing-4) * -1)
32
- }
33
- .styles\:light\:text_red.light, .light .styles\:light\:text_red {
34
- color: red
35
- }
36
- .styles\:dark\:text_green.dark, .dark .styles\:dark\:text_green {
37
- color: green
38
- }
39
- .styles\:dark\:opacity_slate400.dark, .dark .styles\:dark\:opacity_slate400 {
40
- opacity: slate400
41
- }
42
- @media screen and (min-width: 40em) {
43
- [dir=rtl] .styles\:sm\:rtl\:top_20px {
44
- top: 20px
45
- }
46
- }
47
- .styles\:left_20px,.styles\:\[\&_\>_p\]\:left_20px > p {
48
- left: 20px
49
- }
50
- @media screen and (min-width: 48em) {
51
- .styles\:\[\&_\>_p\]\:md\:left_40px > p {
52
- left: 40px
53
- }
54
- }
55
- .styles\:\[\&_\>_p\]\:light\:bg_red400 > p.light, .light .styles\:\[\&_\>_p\]\:light\:bg_red400 > p {
56
- background: red400
57
- }
58
- .styles\:\[\&_\>_p\]\:dark\:bg_green500 > p.dark, .dark .styles\:\[\&_\>_p\]\:dark\:bg_green500 > p {
59
- background: green500
60
- }
61
- [dir=rtl] .styles\:\[\&_\>_p\]\:rtl\:font_sans > p {
62
- font: sans
63
- }
64
- .styles\:\[\&\:\:placeholder\]\:left_40px::placeholder {
65
- left: 40px
66
- }
67
- .styles\:\[\&\:\:placeholder\]\:bg_red400::placeholder {
68
- background: red400
69
- }
70
- @media screen and (min-width: 40em) {
71
- .styles\:\[\&\:\:placeholder\]\:sm\:text_left::placeholder {
72
- text-align: left
73
- }
74
- }
75
-
76
- .styles\:all_unset {
77
- all: unset
78
- }
79
-
80
- .styles\:bg_red {
81
- background-color: red
82
- }
83
-
84
- .styles\:border_none {
85
- border: var(--borders-none)
86
- }
87
-
88
- .styles\:p_\$3_\$3 {
89
- padding: $3 $3
90
- }
91
-
92
- .styles\:rounded_\$button {
93
- border-radius: $button
94
- }
95
-
96
- .styles\:fs_\$xsmall {
97
- font-size: $xsmall
98
- }
99
-
100
- .styles\:cursor_pointer {
101
- cursor: pointer
102
- }
103
- .styles\:\[\&_\+_span\]\:ml_\$2 + span {
104
- margin-left: $2
105
- }
106
- .test .styles\:\[\.test_\&\]\:bg_blue {
107
- background-color: blue
108
- }
109
- .styles\:\[\&_\.my-class\]\:text_red .my-class,.styles\:\[\&_span\]\:text_red span,.styles\:\[\&_kbd\]\:text_red kbd {
110
- color: red
111
- }
112
- .styles\:\[\&\:focus\,_\&\:hover\]\:shadow_none:focus, .styles\:\[\&\:focus\,_\&\:hover\]\:shadow_none:hover {
113
- box-shadow: none
114
- }
115
- :focus > .styles\:\[\:focus_\>_\&\]\:text_white {
116
- color: var(--colors-white)
117
- }
118
- @media screen and (min-width: 40em) {
119
- .styles\:sm\:hover\:top_50px:is(:hover, [data-hover]) {
120
- top: 50px
121
- }
122
- }
123
- @media screen and (min-width: 40em) {
124
- [dir=ltr] .styles\:\[\&_\>_p\]\:ltr\:dark\:sm\:hover\:font_serif > p:is(:hover, [data-hover]).dark, .dark [dir=ltr] .styles\:\[\&_\>_p\]\:ltr\:dark\:sm\:hover\:font_serif > p:is(:hover, [data-hover]) {
125
- font: serif
126
- }
127
- }
128
- input:hover .styles\:\[input\:hover_\&\]\:bg_red400 {
129
- background: red400
130
- }
131
- @media screen and (min-width: 40em) {
132
- input:hover .styles\:\[input\:hover_\&\]\:sm\:fs_14px {
133
- font-size: 14px
134
- }
135
- }
136
- @media screen and (min-width: 64em) {
137
- input:hover .styles\:\[input\:hover_\&\]\:lg\:fs_18px {
138
- font-size: 18px
139
- }
140
- }
141
- .styles\:hover\:bg_pink\.400:is(:hover, [data-hover]) {
142
- background: var(--colors-pink-400)
143
- }
144
- @media screen and (min-width: 40em) {
145
- .styles\:hover\:sm\:dark\:bg_red\.300:is(:hover, [data-hover]).dark, .dark .styles\:hover\:sm\:dark\:bg_red\.300:is(:hover, [data-hover]) {
146
- background: var(--colors-red-300)
147
- }
148
- }
149
- .styles\:hover\:text_pink\.400:is(:hover, [data-hover]) {
150
- color: var(--colors-pink-400)
151
- }
152
- @media screen and (min-width: 40em) {
153
- .styles\:hover\:disabled\:sm\:bg_red\.300:is(:hover, [data-hover]):is(:disabled, [disabled], [data-disabled]) {
154
- background: var(--colors-red-300)
155
- }
156
- }
157
- @media base {
158
- .styles\:\[\@media_base\]\:\[\&\:hover\]\:left_40px:hover {
159
- left: 40px
160
- }
161
- }
162
- @media base {
163
- @media screen and (min-width: 40em) {
164
- .styles\:\[\@media_base\]\:\[\&\:hover\]\:sm\:text_left:hover {
165
- text-align: left
166
- }
167
- }
168
- }
169
- @media (min-width: 768px) {
170
- .styles\:\[\@media_\(min-width\:_768px\)\]\:\[\&\:hover\]\:bg_yellow:hover {
171
- background-color: yellow
172
- }
173
- }
174
- @media screen and (min-width: 40em) {
175
-
176
- .styles\:sm\:w_60px {
177
- width: 60px
178
- }
179
- }
180
- @media screen and (min-width: 64em) {
181
-
182
- .styles\:lg\:top_120px {
183
- top: 120px
184
- }
185
- }
186
- @media screen and (min-width: 48em) {
187
-
188
- .styles\:md\:left_40px {
189
- left: 40px
190
- }
191
- }
192
- @media base {
193
-
194
- .styles\:\[\@media_base\]\:left_40px {
195
- left: 40px
196
- }
197
- }
198
- @media base {
199
- @media screen and (min-width: 40em) {
200
-
201
- .styles\:\[\@media_base\]\:sm\:text_left {
202
- text-align: left
203
- }
204
- }
205
- }
206
- @media (min-width: 768px) {
207
-
208
- .styles\:\[\@media_\(min-width\:_768px\)\]\:bg_green {
209
- background-color: green
210
- }
211
-
212
- .styles\:\[\@media_\(min-width\:_768px\)\]\:fs_\$small {
213
- font-size: $small
214
- }
215
- }
216
- }