@vinyasa/typography 1.0.23 → 1.0.25

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.
Files changed (56) hide show
  1. package/README.md +77 -2
  2. package/dist/cjs/blockquote.cjs +3 -2
  3. package/dist/cjs/caption.cjs +82 -14
  4. package/dist/cjs/caption.css +104 -2
  5. package/dist/cjs/code.cjs +4 -3
  6. package/dist/cjs/heading.cjs +82 -14
  7. package/dist/cjs/heading.css +104 -2
  8. package/dist/cjs/highlight.cjs +700 -0
  9. package/dist/cjs/highlight.css +197 -0
  10. package/dist/cjs/index.cjs +597 -21
  11. package/dist/cjs/index.css +172 -2
  12. package/dist/cjs/kbd.cjs +3 -2
  13. package/dist/cjs/label.cjs +82 -14
  14. package/dist/cjs/label.css +104 -2
  15. package/dist/cjs/link.cjs +82 -14
  16. package/dist/cjs/link.css +104 -2
  17. package/dist/cjs/list.cjs +431 -0
  18. package/dist/cjs/list.css +60 -0
  19. package/dist/cjs/mark.cjs +246 -0
  20. package/dist/cjs/mark.css +8 -0
  21. package/dist/cjs/markdown-renderer.cjs +87 -17
  22. package/dist/cjs/markdown-renderer.css +104 -2
  23. package/dist/cjs/paragraph.cjs +82 -14
  24. package/dist/cjs/paragraph.css +104 -2
  25. package/dist/cjs/text.cjs +83 -15
  26. package/dist/cjs/text.css +104 -2
  27. package/dist/esm/191.css +104 -2
  28. package/dist/esm/191.js +74 -13
  29. package/dist/esm/227.css +7 -0
  30. package/dist/esm/227.js +39 -0
  31. package/dist/esm/513.css +60 -0
  32. package/dist/esm/513.js +126 -0
  33. package/dist/esm/651.js +4 -2
  34. package/dist/esm/767.js +33 -0
  35. package/dist/esm/783.js +3 -1
  36. package/dist/esm/919.js +3 -1
  37. package/dist/esm/components/highlight/Highlight.d.ts +14 -0
  38. package/dist/esm/components/highlight/index.d.ts +1 -0
  39. package/dist/esm/components/list/List.css.d.ts +47 -0
  40. package/dist/esm/components/list/List.d.ts +52 -0
  41. package/dist/esm/components/list/index.d.ts +1 -0
  42. package/dist/esm/components/mark/Mark.css.d.ts +1 -0
  43. package/dist/esm/components/mark/Mark.d.ts +5 -0
  44. package/dist/esm/components/mark/index.d.ts +1 -0
  45. package/dist/esm/components/text/Text.css.d.ts +94 -1
  46. package/dist/esm/components/text/Text.d.ts +55 -9
  47. package/dist/esm/highlight.d.ts +2 -0
  48. package/dist/esm/highlight.js +1 -0
  49. package/dist/esm/index.d.ts +4 -0
  50. package/dist/esm/index.js +26 -0
  51. package/dist/esm/list.d.ts +2 -0
  52. package/dist/esm/list.js +1 -0
  53. package/dist/esm/mark.d.ts +2 -0
  54. package/dist/esm/mark.js +1 -0
  55. package/dist/esm/useIsTruncated.d.ts +15 -0
  56. package/package.json +25 -5
package/dist/cjs/link.css CHANGED
@@ -64,7 +64,7 @@
64
64
  }
65
65
 
66
66
  ._4sie9wg {
67
- color: var(--vinyasa-on-secondary);
67
+ color: var(--vinyasa-text-default);
68
68
  }
69
69
 
70
70
  ._4sie9wh {
@@ -76,15 +76,117 @@
76
76
  }
77
77
 
78
78
  ._4sie9wj {
79
- color: var(--vinyasa-error);
79
+ color: var(--vinyasa-status-info-text);
80
80
  }
81
81
 
82
82
  ._4sie9wk {
83
+ color: var(--vinyasa-status-success-text);
84
+ }
85
+
86
+ ._4sie9wl {
87
+ color: var(--vinyasa-status-warning-text);
88
+ }
89
+
90
+ ._4sie9wm {
91
+ color: var(--vinyasa-status-error-text);
92
+ }
93
+
94
+ ._4sie9wn {
83
95
  text-overflow: ellipsis;
84
96
  white-space: nowrap;
97
+ max-width: 100%;
98
+ display: inline-block;
85
99
  overflow: hidden;
86
100
  }
87
101
 
102
+ ._4sie9wo {
103
+ text-overflow: ellipsis;
104
+ white-space: nowrap;
105
+ text-align: left;
106
+ direction: rtl;
107
+ max-width: 100%;
108
+ display: inline-block;
109
+ overflow: hidden;
110
+ }
111
+
112
+ ._4sie9wp {
113
+ font-style: italic;
114
+ }
115
+
116
+ ._4sie9wq {
117
+ text-transform: uppercase;
118
+ }
119
+
120
+ ._4sie9wr {
121
+ text-transform: lowercase;
122
+ }
123
+
124
+ ._4sie9ws {
125
+ text-transform: capitalize;
126
+ }
127
+
128
+ ._4sie9wt {
129
+ text-transform: none;
130
+ }
131
+
132
+ ._4sie9wu {
133
+ text-decoration: underline;
134
+ }
135
+
136
+ ._4sie9wv {
137
+ text-decoration: line-through;
138
+ }
139
+
140
+ ._4sie9ww {
141
+ text-decoration: none;
142
+ }
143
+
144
+ ._4sie9wx {
145
+ letter-spacing: var(--vinyasa-letter-spacing-tight);
146
+ }
147
+
148
+ ._4sie9wy {
149
+ letter-spacing: var(--vinyasa-letter-spacing-normal);
150
+ }
151
+
152
+ ._4sie9wz {
153
+ letter-spacing: var(--vinyasa-letter-spacing-wide);
154
+ }
155
+
156
+ ._4sie9w10 {
157
+ line-height: var(--vinyasa-line-height-tight);
158
+ }
159
+
160
+ ._4sie9w11 {
161
+ line-height: var(--vinyasa-line-height-normal);
162
+ }
163
+
164
+ ._4sie9w12 {
165
+ line-height: var(--vinyasa-line-height-loose);
166
+ }
167
+
168
+ ._4sie9w13 {
169
+ text-wrap: wrap;
170
+ }
171
+
172
+ ._4sie9w14 {
173
+ text-wrap: balance;
174
+ }
175
+
176
+ ._4sie9w15 {
177
+ text-wrap: pretty;
178
+ }
179
+
180
+ ._4sie9w16 {
181
+ text-wrap: nowrap;
182
+ }
183
+
184
+ ._4sie9w17 {
185
+ color: rgba(0, 0, 0, 0);
186
+ -webkit-background-clip: text;
187
+ background-clip: text;
188
+ }
189
+
88
190
  ._1laoo9r0 {
89
191
  text-decoration: none;
90
192
  }
@@ -0,0 +1,431 @@
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, getters, values)=>{
5
+ var define = (defs, kind)=>{
6
+ for(var key in defs)if (__webpack_require__.o(defs, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
7
+ enumerable: true,
8
+ [kind]: defs[key]
9
+ });
10
+ };
11
+ define(getters, "get");
12
+ define(values, "value");
13
+ };
14
+ })();
15
+ (()=>{
16
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
17
+ })();
18
+ (()=>{
19
+ __webpack_require__.r = (exports1)=>{
20
+ if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
21
+ value: 'Module'
22
+ });
23
+ Object.defineProperty(exports1, '__esModule', {
24
+ value: true
25
+ });
26
+ };
27
+ })();
28
+ var __webpack_exports__ = {};
29
+ __webpack_require__.r(__webpack_exports__);
30
+ __webpack_require__.d(__webpack_exports__, {
31
+ default: ()=>list_List
32
+ });
33
+ const jsx_runtime_namespaceObject = require("react/jsx-runtime");
34
+ const tokens_namespaceObject = require("@vinyasa/tokens");
35
+ const external_react_namespaceObject = require("react");
36
+ const space = {
37
+ 1: tokens_namespaceObject.themeContract.space1,
38
+ 2: tokens_namespaceObject.themeContract.space2,
39
+ 3: tokens_namespaceObject.themeContract.space3,
40
+ 4: tokens_namespaceObject.themeContract.space4,
41
+ 5: tokens_namespaceObject.themeContract.space5,
42
+ 6: tokens_namespaceObject.themeContract.space6
43
+ };
44
+ const spacingPropertyMap = [
45
+ [
46
+ 'm',
47
+ 'margin'
48
+ ],
49
+ [
50
+ 'mx',
51
+ 'marginInline'
52
+ ],
53
+ [
54
+ 'my',
55
+ 'marginBlock'
56
+ ],
57
+ [
58
+ 'mt',
59
+ 'marginTop'
60
+ ],
61
+ [
62
+ 'mr',
63
+ 'marginRight'
64
+ ],
65
+ [
66
+ 'mb',
67
+ 'marginBottom'
68
+ ],
69
+ [
70
+ 'ml',
71
+ 'marginLeft'
72
+ ],
73
+ [
74
+ 'p',
75
+ 'padding'
76
+ ],
77
+ [
78
+ 'px',
79
+ 'paddingInline'
80
+ ],
81
+ [
82
+ 'py',
83
+ 'paddingBlock'
84
+ ],
85
+ [
86
+ 'pt',
87
+ 'paddingTop'
88
+ ],
89
+ [
90
+ 'pr',
91
+ 'paddingRight'
92
+ ],
93
+ [
94
+ 'pb',
95
+ 'paddingBottom'
96
+ ],
97
+ [
98
+ 'pl',
99
+ 'paddingLeft'
100
+ ]
101
+ ];
102
+ const resolveSpacingStyle = (props)=>{
103
+ const style = {};
104
+ for (const [propKey, cssProperty] of spacingPropertyMap){
105
+ const value = props[propKey];
106
+ if (void 0 !== value) style[cssProperty] = space[value];
107
+ }
108
+ return style;
109
+ };
110
+ function toPrimitive(t, r) {
111
+ if ("object" != typeof t || !t) return t;
112
+ var e = t[Symbol.toPrimitive];
113
+ if (void 0 !== e) {
114
+ var i = e.call(t, r || "default");
115
+ if ("object" != typeof i) return i;
116
+ throw new TypeError("@@toPrimitive must return a primitive value.");
117
+ }
118
+ return ("string" === r ? String : Number)(t);
119
+ }
120
+ function toPropertyKey(t) {
121
+ var i = toPrimitive(t, "string");
122
+ return "symbol" == typeof i ? i : String(i);
123
+ }
124
+ function _defineProperty(obj, key, value) {
125
+ key = toPropertyKey(key);
126
+ if (key in obj) Object.defineProperty(obj, key, {
127
+ value: value,
128
+ enumerable: true,
129
+ configurable: true,
130
+ writable: true
131
+ });
132
+ else obj[key] = value;
133
+ return obj;
134
+ }
135
+ function createRuntimeFn_62c9670f_esm_ownKeys(e, r) {
136
+ var t = Object.keys(e);
137
+ if (Object.getOwnPropertySymbols) {
138
+ var o = Object.getOwnPropertySymbols(e);
139
+ r && (o = o.filter(function(r) {
140
+ return Object.getOwnPropertyDescriptor(e, r).enumerable;
141
+ })), t.push.apply(t, o);
142
+ }
143
+ return t;
144
+ }
145
+ function _objectSpread2(e) {
146
+ for(var r = 1; r < arguments.length; r++){
147
+ var t = null != arguments[r] ? arguments[r] : {};
148
+ r % 2 ? createRuntimeFn_62c9670f_esm_ownKeys(Object(t), !0).forEach(function(r) {
149
+ _defineProperty(e, r, t[r]);
150
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : createRuntimeFn_62c9670f_esm_ownKeys(Object(t)).forEach(function(r) {
151
+ Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
152
+ });
153
+ }
154
+ return e;
155
+ }
156
+ function mapValues(input, fn) {
157
+ var result = {};
158
+ for(var _key in input)result[_key] = fn(input[_key], _key);
159
+ return result;
160
+ }
161
+ var shouldApplyCompound = (compoundCheck, selections, defaultVariants)=>{
162
+ for (var key of Object.keys(compoundCheck)){
163
+ var _selections$key;
164
+ if (compoundCheck[key] !== (null != (_selections$key = selections[key]) ? _selections$key : defaultVariants[key])) return false;
165
+ }
166
+ return true;
167
+ };
168
+ var createRuntimeFn = (config)=>{
169
+ var runtimeFn = (options)=>{
170
+ var className = config.defaultClassName;
171
+ var selections = _objectSpread2(_objectSpread2({}, config.defaultVariants), options);
172
+ for(var variantName in selections){
173
+ var _selections$variantNa;
174
+ var variantSelection = null != (_selections$variantNa = selections[variantName]) ? _selections$variantNa : config.defaultVariants[variantName];
175
+ if (null != variantSelection) {
176
+ var selection = variantSelection;
177
+ if ('boolean' == typeof selection) selection = true === selection ? 'true' : 'false';
178
+ var selectionClassName = config.variantClassNames[variantName][selection];
179
+ if (selectionClassName) className += ' ' + selectionClassName;
180
+ }
181
+ }
182
+ for (var [compoundCheck, compoundClassName] of config.compoundVariants)if (shouldApplyCompound(compoundCheck, selections, config.defaultVariants)) className += ' ' + compoundClassName;
183
+ return className;
184
+ };
185
+ runtimeFn.variants = ()=>Object.keys(config.variantClassNames);
186
+ runtimeFn.classNames = {
187
+ get base () {
188
+ return config.defaultClassName.split(' ')[0];
189
+ },
190
+ get variants () {
191
+ return mapValues(config.variantClassNames, (classNames)=>mapValues(classNames, (className)=>className.split(' ')[0]));
192
+ }
193
+ };
194
+ return runtimeFn;
195
+ };
196
+ var item = createRuntimeFn({
197
+ defaultClassName: '_1ohxnc19',
198
+ variantClassNames: {
199
+ withIcon: {
200
+ true: '_1ohxnc1a'
201
+ },
202
+ center: {
203
+ true: '_1ohxnc1b'
204
+ }
205
+ },
206
+ defaultVariants: {},
207
+ compoundVariants: []
208
+ });
209
+ var itemIcon = '_1ohxnc1c';
210
+ var list = createRuntimeFn({
211
+ defaultClassName: '_1ohxnc10',
212
+ variantClassNames: {
213
+ spacing: {
214
+ 1: '_1ohxnc11',
215
+ 2: '_1ohxnc12',
216
+ 3: '_1ohxnc13',
217
+ 4: '_1ohxnc14',
218
+ 5: '_1ohxnc15',
219
+ 6: '_1ohxnc16'
220
+ },
221
+ withPadding: {
222
+ true: '_1ohxnc17',
223
+ false: '_1ohxnc18'
224
+ }
225
+ },
226
+ defaultVariants: {
227
+ spacing: 2,
228
+ withPadding: true
229
+ },
230
+ compoundVariants: []
231
+ });
232
+ function _define_property(obj, key, value) {
233
+ if (key in obj) Object.defineProperty(obj, key, {
234
+ value: value,
235
+ enumerable: true,
236
+ configurable: true,
237
+ writable: true
238
+ });
239
+ else obj[key] = value;
240
+ return obj;
241
+ }
242
+ function _object_spread(target) {
243
+ for(var i = 1; i < arguments.length; i++){
244
+ var source = null != arguments[i] ? arguments[i] : {};
245
+ var ownKeys = Object.keys(source);
246
+ if ("function" == typeof Object.getOwnPropertySymbols) ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
247
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
248
+ }));
249
+ ownKeys.forEach(function(key) {
250
+ _define_property(target, key, source[key]);
251
+ });
252
+ }
253
+ return target;
254
+ }
255
+ function List_ownKeys(object, enumerableOnly) {
256
+ var keys = Object.keys(object);
257
+ if (Object.getOwnPropertySymbols) {
258
+ var symbols = Object.getOwnPropertySymbols(object);
259
+ if (enumerableOnly) symbols = symbols.filter(function(sym) {
260
+ return Object.getOwnPropertyDescriptor(object, sym).enumerable;
261
+ });
262
+ keys.push.apply(keys, symbols);
263
+ }
264
+ return keys;
265
+ }
266
+ function _object_spread_props(target, source) {
267
+ source = null != source ? source : {};
268
+ if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
269
+ else List_ownKeys(Object(source)).forEach(function(key) {
270
+ Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
271
+ });
272
+ return target;
273
+ }
274
+ function _object_without_properties(source, excluded) {
275
+ if (null == source) return {};
276
+ var target = {}, sourceKeys, key, i;
277
+ if ("u" > typeof Reflect && Reflect.ownKeys) {
278
+ sourceKeys = Reflect.ownKeys(Object(source));
279
+ for(i = 0; i < sourceKeys.length; i++){
280
+ key = sourceKeys[i];
281
+ if (!(excluded.indexOf(key) >= 0)) {
282
+ if (Object.prototype.propertyIsEnumerable.call(source, key)) target[key] = source[key];
283
+ }
284
+ }
285
+ return target;
286
+ }
287
+ target = _object_without_properties_loose(source, excluded);
288
+ if (Object.getOwnPropertySymbols) {
289
+ sourceKeys = Object.getOwnPropertySymbols(source);
290
+ for(i = 0; i < sourceKeys.length; i++){
291
+ key = sourceKeys[i];
292
+ if (!(excluded.indexOf(key) >= 0)) {
293
+ if (Object.prototype.propertyIsEnumerable.call(source, key)) target[key] = source[key];
294
+ }
295
+ }
296
+ }
297
+ return target;
298
+ }
299
+ function _object_without_properties_loose(source, excluded) {
300
+ if (null == source) return {};
301
+ var target = {}, sourceKeys = Object.getOwnPropertyNames(source), key, i;
302
+ for(i = 0; i < sourceKeys.length; i++){
303
+ key = sourceKeys[i];
304
+ if (!(excluded.indexOf(key) >= 0)) {
305
+ if (Object.prototype.propertyIsEnumerable.call(source, key)) target[key] = source[key];
306
+ }
307
+ }
308
+ return target;
309
+ }
310
+ const ListContext = /*#__PURE__*/ (0, external_react_namespaceObject.createContext)({});
311
+ const ListRoot = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)((_0, _1)=>{
312
+ let _ref = [
313
+ _0,
314
+ _1
315
+ ], [_ref1, ..._rest] = _ref, { type = 'unordered', spacing, withPadding, icon, center, m, mt, mr, mb, ml, mx, my, p, pt, pr, pb, pl, px, py, className, style, children } = _ref1, rest = _object_without_properties(_ref1, [
316
+ "type",
317
+ "spacing",
318
+ "withPadding",
319
+ "icon",
320
+ "center",
321
+ "m",
322
+ "mt",
323
+ "mr",
324
+ "mb",
325
+ "ml",
326
+ "mx",
327
+ "my",
328
+ "p",
329
+ "pt",
330
+ "pr",
331
+ "pb",
332
+ "pl",
333
+ "px",
334
+ "py",
335
+ "className",
336
+ "style",
337
+ "children"
338
+ ]), [ref] = _rest;
339
+ const themedRef = (0, tokens_namespaceObject.useThemedRef)(ref);
340
+ const classes = className ? `${list({
341
+ spacing,
342
+ withPadding
343
+ })} ${className}` : list({
344
+ spacing,
345
+ withPadding
346
+ });
347
+ const computedStyle = _object_spread({}, resolveSpacingStyle({
348
+ m,
349
+ mt,
350
+ mr,
351
+ mb,
352
+ ml,
353
+ mx,
354
+ my,
355
+ p,
356
+ pt,
357
+ pr,
358
+ pb,
359
+ pl,
360
+ px,
361
+ py
362
+ }), style);
363
+ const contextValue = {
364
+ icon,
365
+ center
366
+ };
367
+ if ('ordered' === type) return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(ListContext.Provider, {
368
+ value: contextValue,
369
+ children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("ol", _object_spread_props(_object_spread({
370
+ ref: themedRef,
371
+ className: classes,
372
+ style: computedStyle
373
+ }, rest), {
374
+ children: children
375
+ }))
376
+ });
377
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(ListContext.Provider, {
378
+ value: contextValue,
379
+ children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("ul", _object_spread_props(_object_spread({
380
+ ref: themedRef,
381
+ className: classes,
382
+ style: computedStyle
383
+ }, rest), {
384
+ children: children
385
+ }))
386
+ });
387
+ });
388
+ ListRoot.displayName = 'List';
389
+ const ListItem = /*#__PURE__*/ (0, external_react_namespaceObject.forwardRef)((_0, _1)=>{
390
+ let _ref = [
391
+ _0,
392
+ _1
393
+ ], [_ref1, ..._rest] = _ref, { icon, className, children } = _ref1, rest = _object_without_properties(_ref1, [
394
+ "icon",
395
+ "className",
396
+ "children"
397
+ ]), [ref] = _rest;
398
+ const context = (0, external_react_namespaceObject.useContext)(ListContext);
399
+ const resolvedIcon = null != icon ? icon : context.icon;
400
+ const classes = className ? `${item({
401
+ withIcon: Boolean(resolvedIcon),
402
+ center: context.center
403
+ })} ${className}` : item({
404
+ withIcon: Boolean(resolvedIcon),
405
+ center: context.center
406
+ });
407
+ return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("li", _object_spread_props(_object_spread({
408
+ ref: ref,
409
+ className: classes
410
+ }, rest), {
411
+ children: [
412
+ resolvedIcon ? /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
413
+ className: itemIcon,
414
+ children: resolvedIcon
415
+ }) : null,
416
+ children
417
+ ]
418
+ }));
419
+ });
420
+ ListItem.displayName = 'ListItem';
421
+ const List = Object.assign(ListRoot, {
422
+ Item: ListItem
423
+ });
424
+ const list_List = List;
425
+ exports["default"] = __webpack_exports__["default"];
426
+ for(var __rspack_i in __webpack_exports__)if (-1 === [
427
+ "default"
428
+ ].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
429
+ Object.defineProperty(exports, '__esModule', {
430
+ value: true
431
+ });
@@ -0,0 +1,60 @@
1
+ ._1ohxnc10 {
2
+ font-family: var(--vinyasa-font-family-sans);
3
+ font-size: var(--vinyasa-font-size-md);
4
+ color: var(--vinyasa-text-default);
5
+ flex-direction: column;
6
+ margin: 0;
7
+ display: flex;
8
+ }
9
+
10
+ ._1ohxnc11 {
11
+ gap: var(--vinyasa-space1);
12
+ }
13
+
14
+ ._1ohxnc12 {
15
+ gap: var(--vinyasa-space2);
16
+ }
17
+
18
+ ._1ohxnc13 {
19
+ gap: var(--vinyasa-space3);
20
+ }
21
+
22
+ ._1ohxnc14 {
23
+ gap: var(--vinyasa-space4);
24
+ }
25
+
26
+ ._1ohxnc15 {
27
+ gap: var(--vinyasa-space5);
28
+ }
29
+
30
+ ._1ohxnc16 {
31
+ gap: var(--vinyasa-space6);
32
+ }
33
+
34
+ ._1ohxnc17 {
35
+ padding-left: var(--vinyasa-space5);
36
+ }
37
+
38
+ ._1ohxnc18 {
39
+ padding-left: 0;
40
+ list-style: none;
41
+ }
42
+
43
+ ._1ohxnc1a {
44
+ align-items: flex-start;
45
+ gap: var(--vinyasa-space2);
46
+ list-style: none;
47
+ display: flex;
48
+ }
49
+
50
+ ._1ohxnc1b {
51
+ align-items: center;
52
+ }
53
+
54
+ ._1ohxnc1c {
55
+ flex-shrink: 0;
56
+ align-items: center;
57
+ line-height: 1;
58
+ display: inline-flex;
59
+ }
60
+