eco-vue-js 0.9.30 → 0.10.0

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/README.md CHANGED
@@ -12,17 +12,19 @@ npm i eco-vue-js
12
12
 
13
13
  ### Tailwind configuration
14
14
 
15
- 1. Add the following lines to the `content` section in your [Tailwind configuration file](https://tailwindcss.com/docs/content-configuration):
15
+ 1. Add the library's [Tailwind preset](https://tailwindcss.com/docs/presets) to your [Tailwind configuration file](https://tailwindcss.com/docs/content-configuration):
16
16
  ```
17
- content: [
18
- './node_modules/eco-vue-js/dist/components/**/*.vue.js',
19
- './node_modules/eco-vue-js/dist/components/**/*.js',
17
+ import tailwindBase from 'eco-vue-js/tailwind-base'
18
+
19
+ presets: [
20
+ tailwindBase,
20
21
  ]
21
22
  ```
22
- 2. Add the library's [Tailwind preset](https://tailwindcss.com/docs/presets) to your configuration file:
23
+
24
+ 2. Add the following lines to the `content` section in your configuration file:
23
25
  ```
24
- presets: [
25
- require('eco-vue-js/tailwind-base/index.cjs'),
26
+ content: [
27
+ ...tailwindBase.content,
26
28
  ]
27
29
  ```
28
30
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/rsmple/eco-vue-js.git"
6
6
  },
7
- "version": "0.9.30",
7
+ "version": "0.10.0",
8
8
  "scripts": {
9
9
  "build": "run-p type-check \"build-only {@}\" --",
10
10
  "preview": "vite preview",
@@ -71,8 +71,9 @@
71
71
  "./dist/types/types.d.ts": {
72
72
  "import": "./dist/types/types.d.ts"
73
73
  },
74
- "./tailwind-base/index.cjs": {
75
- "require": "./tailwind-base/index.cjs"
74
+ "./tailwind-base": {
75
+ "import": "./tailwind-base/index.ts",
76
+ "require": "./tailwind-base/index.ts"
76
77
  },
77
78
  "./eslint/plugin": {
78
79
  "import": "./eslint/plugin.js"
@@ -1,7 +1,21 @@
1
- /** @type {import('tailwindcss').Config} */
2
- const colors = require('tailwindcss/colors')
1
+ import type {Config} from 'tailwindcss'
3
2
 
4
- module.exports = {
3
+ import colors from 'tailwindcss/colors.js'
4
+
5
+ import pluginDefault from './plugins/default.js'
6
+ import animations from './theme/animations.js'
7
+ import score from './theme/score.js'
8
+ import severity from './theme/severity.js'
9
+ import sizes from './theme/sizes.js'
10
+
11
+ const tailwindBase = {
12
+ darkMode: ['variant', [
13
+ '.dark &:not(:is(.light *))',
14
+ ]],
15
+ content: [
16
+ './node_modules/eco-vue-js/dist/components/**/*.vue.js',
17
+ './node_modules/eco-vue-js/dist/components/**/*.js',
18
+ ],
5
19
  theme: {
6
20
  colors: {
7
21
  current: 'currentColor',
@@ -36,34 +50,34 @@ module.exports = {
36
50
  info: '#82adff',
37
51
  'info-dark': '#407ae5',
38
52
 
39
- severity: require('./theme/severity.cjs'),
40
- score: require('./theme/score.cjs'),
53
+ severity,
54
+ score,
41
55
 
42
56
  transparent: 'transparent',
43
57
  },
44
58
  extend: {
45
- ...require('./theme/sizes.cjs'),
46
- ...require('./theme/animations.cjs'),
59
+ ...sizes,
60
+ ...animations,
47
61
  screens: {
48
- 'xs': '480px',
49
- 'sm': '640px',
50
- 'md': '768px',
51
- 'lg': '1024px',
52
- 'xl': '1280px',
62
+ xs: '480px',
63
+ sm: '640px',
64
+ md: '768px',
65
+ lg: '1024px',
66
+ xl: '1280px',
53
67
  '2xl': '1536px',
54
68
  '3xl': '1728px',
55
69
  '4xl': '1920px',
56
70
  '5xl': '2560px',
57
71
 
58
- 'xs-not': {'max': '479px'},
59
- 'sm-not': {'max': '639px'},
60
- 'md-not': {'max': '767px'},
61
- 'lg-not': {'max': '1023px'},
62
- 'xl-not': {'max': '1279px'},
63
- '2xl-not': {'max': '1535px'},
64
- '3xl-not': {'max': '1727px'},
65
- '4xl-not': {'max': '1919px'},
66
- '5xl-not': {'max': '2559px'},
72
+ 'xs-not': {max: '479px'},
73
+ 'sm-not': {max: '639px'},
74
+ 'md-not': {max: '767px'},
75
+ 'lg-not': {max: '1023px'},
76
+ 'xl-not': {max: '1279px'},
77
+ '2xl-not': {max: '1535px'},
78
+ '3xl-not': {max: '1727px'},
79
+ '4xl-not': {max: '1919px'},
80
+ '5xl-not': {max: '2559px'},
67
81
  },
68
82
  scale: {
69
83
  120: '1.2',
@@ -90,7 +104,7 @@ module.exports = {
90
104
  3: '3',
91
105
  },
92
106
  overflow: {
93
- 'overlay': 'overlay',
107
+ overlay: 'overlay',
94
108
  },
95
109
  },
96
110
  fontFamily: {
@@ -100,6 +114,8 @@ module.exports = {
100
114
  },
101
115
  },
102
116
  plugins: [
103
- require('./plugins/default.cjs'),
117
+ pluginDefault,
104
118
  ],
105
- }
119
+ } satisfies Config
120
+
121
+ export default tailwindBase
@@ -1,6 +1,6 @@
1
- const plugin = require('tailwindcss/plugin')
1
+ import plugin from 'tailwindcss/plugin.js'
2
2
 
3
- module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, addBase, theme, addComponents, config}) {
3
+ const pluginDefault = plugin(function ({matchUtilities, addVariant, addUtilities, addBase, theme, addComponents, config}) {
4
4
  matchUtilities(
5
5
  {
6
6
  square: (value) => {
@@ -56,11 +56,11 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
56
56
 
57
57
  return Array(4).fill(undefined).reduce(
58
58
  (current, _, index) => {
59
- const widthValue = `calc(((100% / ${index + 2}) * var(--split-to-chunks-span, 1)) - (var(--split-to-chunks-gap, 16px) * ${(index + 1)} / ${(index + 2)}))`
59
+ const widthValue = `calc(((100% / ${ index + 2 }) * var(--split-to-chunks-span, 1)) - (var(--split-to-chunks-gap, 16px) * ${ (index + 1) } / ${ (index + 2) }))`
60
60
 
61
61
  return {
62
62
  ...current,
63
- [`@media (min-width: ${value * (index + 2) + (index < 1 ? 2 : 25.25)}${unit})`]: {
63
+ [`@media (min-width: ${ value * (index + 2) + (index < 1 ? 2 : 25.25) }${ unit })`]: {
64
64
  width: widthValue,
65
65
  minWidth: widthValue,
66
66
  },
@@ -99,16 +99,16 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
99
99
  'max-width': 'calc(100vw - var(--nav-bar-width) - var(--inner-margin) - var(--inner-margin) - var(--scroll-bar-width))',
100
100
  },
101
101
  '.w-inner': {
102
- 'width': 'calc(100vw - var(--actions-bar-width) - var(--nav-bar-width) - var(--inner-margin) - var(--inner-margin) - var(--scroll-bar-width))',
102
+ width: 'calc(100vw - var(--actions-bar-width) - var(--nav-bar-width) - var(--inner-margin) - var(--inner-margin) - var(--scroll-bar-width))',
103
103
  },
104
104
  '.min-w-inner': {
105
105
  'min-width': 'calc(100vw - var(--actions-bar-width) - var(--nav-bar-width) - var(--inner-margin) - var(--inner-margin) - var(--scroll-bar-width))',
106
106
  },
107
107
  '.left-inner': {
108
- 'left': 'calc(var(--nav-bar-width) + var(--inner-margin))',
108
+ left: 'calc(var(--nav-bar-width) + var(--inner-margin))',
109
109
  },
110
110
  '.right-inner': {
111
- 'right': 'calc(var(--actions-bar-width) + var(--inner-margin))',
111
+ right: 'calc(var(--actions-bar-width) + var(--inner-margin))',
112
112
  },
113
113
  })
114
114
 
@@ -124,7 +124,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
124
124
 
125
125
  addBase({
126
126
  '.w-input': {
127
- 'outline': 'none',
127
+ outline: 'none',
128
128
 
129
129
  '--input-autofill-bg': theme('colors.default'),
130
130
  '--input-autofull-text': theme('colors.black.default'),
@@ -134,24 +134,24 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
134
134
  },
135
135
 
136
136
  '&:focus-visible': {
137
- 'outline': 'none',
137
+ outline: 'none',
138
138
  },
139
139
 
140
140
  '&[autocomplete="off"]': {
141
141
  '&::-webkit-contacts-auto-fill-button, &::-webkit-credentials-auto-fill-button': {
142
- 'visibility': 'hidden',
143
- 'display': 'none !important',
142
+ visibility: 'hidden',
143
+ display: 'none !important',
144
144
  'pointer-events': 'none',
145
- 'height': '0',
146
- 'width': '0',
147
- 'margin': '0',
145
+ height: '0',
146
+ width: '0',
147
+ margin: '0',
148
148
  },
149
149
  },
150
150
 
151
151
  '&::-webkit-outer-spin-button, &::-webkit-inner-spin-button': {
152
152
  '-webkit-appearance': 'none',
153
- 'appearance': 'none',
154
- 'margin': '0',
153
+ appearance: 'none',
154
+ margin: '0',
155
155
  },
156
156
 
157
157
  '&:-webkit-autofill': {
@@ -163,11 +163,11 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
163
163
 
164
164
  '&[type=number]': {
165
165
  '-moz-appearance': 'textfield',
166
- 'appearance': 'textfield',
166
+ appearance: 'textfield',
167
167
  },
168
168
 
169
169
  '&::-webkit-textfield-decoration-container, &:focus::-webkit-textfield-decoration-container': {
170
- 'visibility': 'hidden',
170
+ visibility: 'hidden',
171
171
  'pointer-events': 'none',
172
172
  },
173
173
  },
@@ -176,12 +176,12 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
176
176
  addBase({
177
177
  '.w-scrollbar': {
178
178
  '&::-webkit-scrollbar, & ::-webkit-scrollbar': {
179
- 'width': '12px',
180
- 'height': '12px',
179
+ width: '12px',
180
+ height: '12px',
181
181
  'z-index': '500',
182
182
  },
183
183
  '&::-webkit-scrollbar-button, & ::-webkit-scrollbar-button': {
184
- 'display': 'none',
184
+ display: 'none',
185
185
  },
186
186
  '&::-webkit-scrollbar-thumb, & ::-webkit-scrollbar-thumb': {
187
187
  'border-radius': '5px',
@@ -195,7 +195,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
195
195
  },
196
196
  },
197
197
  '&::-webkit-scrollbar-track, & ::-webkit-scrollbar-track, &::-webkit-scrollbar-corner, & ::-webkit-scrollbar-corner': {
198
- 'background': 'transparent',
198
+ background: 'transparent',
199
199
  },
200
200
  },
201
201
  'html.w-scrollbar': {
@@ -207,18 +207,18 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
207
207
  },
208
208
  },
209
209
  'textarea::-webkit-resizer': {
210
- 'transform': 'scale(2)',
210
+ transform: 'scale(2)',
211
211
  'transform-origin': 'top left',
212
212
  'background-size': '7px 7px',
213
213
  'background-position': 'top',
214
214
  'background-image': 'linear-gradient(135deg, currentColor 10%, transparent 10%, transparent 50%, currentColor 50%, currentColor 60%, transparent 60%, transparent 100%)',
215
- 'color': theme('colors.gray.300'),
215
+ color: theme('colors.gray.300'),
216
216
  [config('darkMode')[1][0]]: {
217
- 'color': theme('colors.gray.700'),
217
+ color: theme('colors.gray.700'),
218
218
  },
219
219
  },
220
220
  '*:focus-visible': {
221
- 'outline': 'none',
221
+ outline: 'none',
222
222
  },
223
223
  })
224
224
 
@@ -251,7 +251,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
251
251
  },
252
252
  '.no-scrollbar': {
253
253
  '&::-webkit-scrollbar': {
254
- 'display': 'none',
254
+ display: 'none',
255
255
  },
256
256
  },
257
257
  '.overflow-y-overlay': {
@@ -274,15 +274,15 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
274
274
 
275
275
  addComponents({
276
276
  '.text-accent': {
277
- 'color': theme('colors.black.default'),
277
+ color: theme('colors.black.default'),
278
278
  [config('darkMode')[1][0]]: {
279
- 'color': theme('colors.gray.200'),
279
+ color: theme('colors.gray.200'),
280
280
  },
281
281
  },
282
282
  '.text-description': {
283
- 'color': theme('colors.gray.400'),
283
+ color: theme('colors.gray.400'),
284
284
  [config('darkMode')[1][0]]: {
285
- 'color': theme('colors.gray.500'),
285
+ color: theme('colors.gray.500'),
286
286
  },
287
287
  },
288
288
  '.text-secure': {
@@ -294,48 +294,48 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
294
294
  addUtilities({
295
295
  '.w-ripple': {
296
296
  '&::before, &-has-only::before': {
297
- 'content': '""',
298
- 'position': 'absolute',
299
- 'top': '0',
300
- 'left': '0',
301
- 'height': '100%',
302
- 'width': '100%',
297
+ content: '""',
298
+ position: 'absolute',
299
+ top: '0',
300
+ left: '0',
301
+ height: '100%',
302
+ width: '100%',
303
303
  'border-radius': 'inherit',
304
304
  'background-color': 'currentColor',
305
305
  'pointer-events': 'none',
306
306
  'user-select': 'none',
307
- 'opacity': '0',
307
+ opacity: '0',
308
308
  'transition-property': 'opacity',
309
309
  'transition-timing-function': 'cubic-bezier(0.4, 0, 0.2, 1)',
310
310
  'transition-duration': '100ms',
311
311
  },
312
312
 
313
313
  '&:active::before': {
314
- 'opacity': 'calc(var(--w-ripple-opacity, 0.10) * 2)',
314
+ opacity: 'calc(var(--w-ripple-opacity, 0.10) * 2)',
315
315
  },
316
316
  },
317
317
 
318
318
  '.w-ripple-trigger:active': {
319
319
  '.w-ripple::before, &.w-ripple::before': {
320
- 'opacity': 'calc(var(--w-ripple-opacity, 0.10) * 2)',
320
+ opacity: 'calc(var(--w-ripple-opacity, 0.10) * 2)',
321
321
  },
322
322
  },
323
323
 
324
324
  '.w-ripple-trigger-has:has(.w-ripple-has:active)': {
325
325
  '.w-ripple-has-only::before, &.w-ripple-has-only::before': {
326
- 'opacity': 'calc(var(--w-ripple-opacity, 0.10) * 2)',
326
+ opacity: 'calc(var(--w-ripple-opacity, 0.10) * 2)',
327
327
  },
328
328
  },
329
329
 
330
330
  '.w-ripple-hover:not(:active):hover, .w-ripple-trigger:not(:active):hover .w-ripple-hover, .w-ripple-hover:not(:active):focus, .w-ripple-trigger:not(:active):focus .w-ripple-hover': {
331
331
  '& .w-ripple:not(:active)::before, &.w-ripple::before': {
332
- 'opacity': 'var(--w-ripple-opacity, 0.10)',
332
+ opacity: 'var(--w-ripple-opacity, 0.10)',
333
333
  },
334
334
  },
335
335
 
336
336
  '.w-ripple-trigger-has:has(.w-ripple-has:not(:active):hover) .w-ripple-hover, .w-ripple-trigger-has:has(.w-ripple-has:not(:active):focus) .w-ripple-hover': {
337
337
  '& .w-ripple-has-only:not(:active)::before, &.w-ripple-has-only::before': {
338
- 'opacity': 'var(--w-ripple-opacity, 0.10)',
338
+ opacity: 'var(--w-ripple-opacity, 0.10)',
339
339
  },
340
340
  },
341
341
  })
@@ -343,32 +343,32 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
343
343
  addUtilities({
344
344
  '.w-hover-circle': {
345
345
  '&::after': {
346
- 'content': '""',
347
- 'position': 'absolute',
348
- 'top': '0',
349
- 'left': '0',
350
- 'height': '100%',
351
- 'width': '100%',
346
+ content: '""',
347
+ position: 'absolute',
348
+ top: '0',
349
+ left: '0',
350
+ height: '100%',
351
+ width: '100%',
352
352
  'border-radius': '9999px',
353
353
  'z-index': '1',
354
354
  'background-color': 'currentColor',
355
355
  'pointer-events': 'none',
356
356
  'user-select': 'none',
357
- 'opacity': '0',
358
- 'transform': 'scaleX(0.5) scaleY(0.5)',
357
+ opacity: '0',
358
+ transform: 'scaleX(0.5) scaleY(0.5)',
359
359
  'transition-property': 'opacity transform',
360
360
  'transition-timing-function': 'cubic-bezier(0.4, 0, 0.2, 1)',
361
361
  'transition-duration': '200ms',
362
362
  },
363
363
 
364
364
  '&:hover::after, .w-hover-circle-trigger:hover &::after, &:focus::after, .w-hover-circle-trigger:focus &::after': {
365
- 'opacity': 'var(--w-hover-circle-opacity, 0.10)',
366
- 'transform': 'scaleX(2.2) scaleY(2.2)',
365
+ opacity: 'var(--w-hover-circle-opacity, 0.10)',
366
+ transform: 'scaleX(2.2) scaleY(2.2)',
367
367
  },
368
368
 
369
369
  '&:active::after, .w-hover-circle-trigger:active &::after': {
370
- 'opacity': 'var(--w-hover-circle-opacity, 0.10)',
371
- 'transform': 'scaleX(1.8) scaleY(1.8)',
370
+ opacity: 'var(--w-hover-circle-opacity, 0.10)',
371
+ transform: 'scaleX(1.8) scaleY(1.8)',
372
372
  },
373
373
  },
374
374
  })
@@ -394,22 +394,22 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
394
394
  addUtilities({
395
395
  '.w-progress-striped': {
396
396
  '&::before': {
397
- 'content': '""',
397
+ content: '""',
398
398
  'background-image': 'linear-gradient(135deg, hsla(0,0%,100%,.125) 25%, transparent 0, transparent 50%, hsla(0,0%,100%,.125) 0, hsla(0,0%,100%,.125) 75%, transparent 0, transparent)',
399
- 'position': 'absolute',
400
- 'top': '0',
401
- 'left': '0',
402
- 'width': 'calc(100% + 40px)',
403
- 'height': '100%',
399
+ position: 'absolute',
400
+ top: '0',
401
+ left: '0',
402
+ width: 'calc(100% + 40px)',
403
+ height: '100%',
404
404
  'background-repeat': 'repeat',
405
405
  'background-size': '40px 40px',
406
- 'animation': theme('animation.move-horizontal'),
406
+ animation: theme('animation.move-horizontal'),
407
407
  },
408
408
  [config('darkMode')[1][0]]: {
409
409
  '&::before': {
410
410
  'background-image': 'linear-gradient(135deg, hsla(0,0%,10%,.125) 25%, transparent 0, transparent 50%, hsla(0,0%,10%,.125) 0, hsla(0,0%,10%,.125) 75%, transparent 0, transparent)',
411
411
  },
412
- }
412
+ },
413
413
  },
414
414
  })
415
415
 
@@ -419,7 +419,7 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
419
419
  'padding-bottom': '0.3125rem',
420
420
  'align-items': 'center',
421
421
  'white-space': 'nowrap',
422
- 'overflow': 'hidden',
422
+ overflow: 'hidden',
423
423
  'text-overflow': 'ellipsis',
424
424
  },
425
425
  '.group\\/model .w-select-field': {
@@ -428,20 +428,20 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
428
428
  },
429
429
 
430
430
  '.w-skeleton': {
431
- 'position': 'relative',
432
- 'width': 'var(--skeleton-width,var(--skeleton-width-internal,70%))',
433
- 'height': 'var(--skeleton-height)',
431
+ position: 'relative',
432
+ width: 'var(--skeleton-width,var(--skeleton-width-internal,70%))',
433
+ height: 'var(--skeleton-height)',
434
434
  'border-radius': 'var(--skeleton-rounded,0.5rem)',
435
- 'overflow': 'hidden',
436
- 'cursor': 'progress',
435
+ overflow: 'hidden',
436
+ cursor: 'progress',
437
437
  '&:not(.w-skeleton-static):before': {
438
- 'content': '""',
439
- 'position': 'absolute',
440
- 'top': '0',
441
- 'width': '100%',
442
- 'height': '100%',
438
+ content: '""',
439
+ position: 'absolute',
440
+ top: '0',
441
+ width: '100%',
442
+ height: '100%',
443
443
  'background-image': 'linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.5), rgba(255,255,255,0))',
444
- 'animation': theme('animation.ticker'),
444
+ animation: theme('animation.ticker'),
445
445
 
446
446
  [config('darkMode')[1][0]]: {
447
447
  'background-image': 'linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.01),rgba(255,255,255,0))',
@@ -450,8 +450,8 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
450
450
  },
451
451
  '.w-skeleton-static': {
452
452
  '& .w-skeleton:before, &.w-skeleton:before': {
453
- 'display': 'none',
454
- 'animation': 'none',
453
+ display: 'none',
454
+ animation: 'none',
455
455
  },
456
456
  },
457
457
  })
@@ -495,3 +495,5 @@ module.exports = plugin(function ({matchUtilities, addVariant, addUtilities, add
495
495
  },
496
496
  )
497
497
  })
498
+
499
+ export default pluginDefault
@@ -1,5 +1,4 @@
1
-
2
- module.exports = {
1
+ export default {
3
2
  keyframes: {
4
3
  ticker: {
5
4
  from: {
@@ -1,5 +1,4 @@
1
-
2
- module.exports = {
1
+ export default {
3
2
  critical: {
4
3
  bg: '#ff73bb30',
5
4
  text: '#f95f95',
@@ -1,5 +1,4 @@
1
-
2
- module.exports = {
1
+ export default {
3
2
  critical: {
4
3
  bg: '#ff757520',
5
4
  text: '#FF7171',
@@ -1,6 +1,5 @@
1
-
2
1
  const extend = {
3
- '1.25': '0.3125rem',
2
+ 1.25: '0.3125rem',
4
3
  6: '1.5rem',
5
4
  10: '2.5rem',
6
5
  11: '2.75rem',
@@ -12,13 +11,13 @@ const extend = {
12
11
  36: '9rem',
13
12
  }
14
13
 
15
- module.exports = {
14
+ export default {
16
15
  height: {
17
- '8.5': '2.125rem',
16
+ 8.5: '2.125rem',
18
17
  18: '4.5rem',
19
18
  },
20
19
  width: {
21
- '8.5': '2.125rem',
20
+ 8.5: '2.125rem',
22
21
  18: '4.5rem',
23
22
  },
24
23
  maxWidth: extend,