@acorex/styles 18.12.28 → 18.12.29
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 +32 -32
- package/icons/fontawesome/_variables.scss +185 -185
- package/icons/fontawesome/fontawesome.scss +17 -17
- package/icons/huge/huge-bulk/_variables.scss +185 -185
- package/icons/huge/huge-bulk/bulk-rounded.scss +13 -13
- package/icons/huge/huge-duotone/_variables.scss +185 -185
- package/icons/huge/huge-duotone/duotone-rounded.scss +13 -13
- package/icons/huge/huge-solid/solid-rounded.scss +13 -13
- package/icons/huge/huge-solid/solid-sharp.scss +13 -13
- package/icons/huge/huge-solid/solid-standard.scss +13 -13
- package/icons/huge/huge-solid/variables/_rounded-variables.scss +185 -185
- package/icons/huge/huge-solid/variables/_sharp-variables.scss +185 -185
- package/icons/huge/huge-solid/variables/_standard-variables.scss +185 -185
- package/icons/huge/huge-stroke/stroke-rounded.scss +13 -13
- package/icons/huge/huge-stroke/stroke-sharp.scss +13 -13
- package/icons/huge/huge-stroke/stroke-standard.scss +13 -13
- package/icons/huge/huge-stroke/variables/_rounded-variables.scss +185 -185
- package/icons/huge/huge-stroke/variables/_sharp-variables.scss +185 -185
- package/icons/huge/huge-stroke/variables/_standard-variables.scss +185 -185
- package/icons/huge/huge-twotone/_variables.scss +185 -185
- package/icons/huge/huge-twotone/twotone-rounded.scss +13 -13
- package/icons/index.scss +570 -570
- package/icons/material/_variables.scss +185 -185
- package/icons/material/material.scss +22 -22
- package/index.scss +9 -9
- package/package.json +11 -11
- package/src/base/_preflight.scss +405 -405
- package/src/base/index.scss +13 -13
- package/src/mixins/_look.scss +83 -83
- package/src/mixins/_media.scss +73 -73
- package/src/mixins/_util.scss +19 -19
- package/src/mixins/index.scss +3 -3
- package/src/shared/_action-item.scss +109 -109
- package/src/shared/_actionsheet.scss +20 -20
- package/src/shared/_check-box.scss +60 -60
- package/src/shared/_color-look.scss +864 -864
- package/src/shared/_drop-down.scss +76 -76
- package/src/shared/_editor-container.scss +258 -258
- package/src/shared/_general-button.scss +87 -87
- package/src/shared/_inputs.scss +16 -16
- package/src/shared/_list.scss +199 -199
- package/src/shared/_radio.scss +57 -57
- package/src/shared/_table.scss +149 -149
- package/src/shared/_utils.scss +84 -84
- package/src/shared/index.scss +12 -12
- package/src/utility/index.scss +24 -24
- package/src/variables/_colors.scss +2 -2
- package/src/variables/_degrees.scss +1 -1
- package/src/variables/index.scss +2 -2
- package/tailwind-base.js +234 -234
- package/themes/default.scss +143 -143
- package/index.css +0 -3058
- package/index.min.css +0 -1
- package/themes/default.css +0 -1
package/tailwind-base.js
CHANGED
@@ -1,234 +1,234 @@
|
|
1
|
-
const plugin = require('tailwindcss/plugin');
|
2
|
-
const { withAnimations } = require('animated-tailwindcss');
|
3
|
-
|
4
|
-
function withOpacityValue(variable) {
|
5
|
-
return ({ opacityValue }) => {
|
6
|
-
if (opacityValue === undefined) {
|
7
|
-
return `rgb(var(${variable}))`;
|
8
|
-
}
|
9
|
-
return `rgb(var(${variable}) ,${opacityValue})`;
|
10
|
-
};
|
11
|
-
}
|
12
|
-
|
13
|
-
const childSelector = plugin(function ({ addVariant }) {
|
14
|
-
addVariant('child', '& > *');
|
15
|
-
addVariant('child-hover', '& > *:hover');
|
16
|
-
addVariant('child-focus', '& > *:focus');
|
17
|
-
addVariant('child-focus-within', '& > *:focus-within');
|
18
|
-
});
|
19
|
-
|
20
|
-
const _colors = {
|
21
|
-
ghost: 'rgba(var(--ax-color-ghost), <alpha-value>)',
|
22
|
-
'ghost-fore': 'rgba(var(--ax-color-ghost-fore), <alpha-value>)',
|
23
|
-
|
24
|
-
surface: 'rgba(var(--ax-color-surface), <alpha-value>)',
|
25
|
-
'surface-fore': 'rgba(var(--ax-color-surface-fore), <alpha-value>)',
|
26
|
-
|
27
|
-
'on-surface': 'rgba(var(--ax-color-on-surface), <alpha-value>)',
|
28
|
-
'on-surface-fore': 'rgba(var(--ax-color-on-surface-fore), <alpha-value>)',
|
29
|
-
|
30
|
-
'input-surface': 'rgba(var(--ax-color-input-surface), <alpha-value>)',
|
31
|
-
'input-surface-fore': 'rgba(var(--ax-color-input-surface-fore), <alpha-value>)',
|
32
|
-
};
|
33
|
-
|
34
|
-
const createPalete = function (colorName) {
|
35
|
-
return {
|
36
|
-
DEFAULT: `rgba(var(--ax-color-${colorName}-500), <alpha-value>)`,
|
37
|
-
fore: `rgba(var(--ax-color-${colorName}-fore), <alpha-value>)`,
|
38
|
-
'fore-tint': `rgba(var(--ax-color-${colorName}-fore-tint), <alpha-value>)`,
|
39
|
-
50: `rgba(var(--ax-color-${colorName}-50), <alpha-value>)`,
|
40
|
-
100: `rgba(var(--ax-color-${colorName}-100), <alpha-value>)`,
|
41
|
-
200: `rgba(var(--ax-color-${colorName}-200), <alpha-value>)`,
|
42
|
-
300: `rgba(var(--ax-color-${colorName}-300), <alpha-value>)`,
|
43
|
-
400: `rgba(var(--ax-color-${colorName}-400), <alpha-value>)`,
|
44
|
-
500: `rgba(var(--ax-color-${colorName}-500), <alpha-value>)`,
|
45
|
-
600: `rgba(var(--ax-color-${colorName}-600), <alpha-value>)`,
|
46
|
-
700: `rgba(var(--ax-color-${colorName}-700), <alpha-value>)`,
|
47
|
-
800: `rgba(var(--ax-color-${colorName}-800), <alpha-value>)`,
|
48
|
-
900: `rgba(var(--ax-color-${colorName}-900), <alpha-value>)`,
|
49
|
-
950: `rgba(var(--ax-color-${colorName}-950), <alpha-value>)`,
|
50
|
-
};
|
51
|
-
};
|
52
|
-
|
53
|
-
module.exports = withAnimations({
|
54
|
-
prefix: 'ax-',
|
55
|
-
content: ['./src/**/*.{html,ts,scss}', './projects/**/*.{html,ts,scss}'],
|
56
|
-
darkMode: 'class',
|
57
|
-
theme: {
|
58
|
-
extend: {
|
59
|
-
colors: {
|
60
|
-
primary: createPalete('primary'),
|
61
|
-
secondary: createPalete('secondary'),
|
62
|
-
success: createPalete('success'),
|
63
|
-
danger: createPalete('danger'),
|
64
|
-
warning: createPalete('warning'),
|
65
|
-
info: createPalete('info'),
|
66
|
-
neutral: createPalete('neutral'),
|
67
|
-
..._colors,
|
68
|
-
},
|
69
|
-
textColor: {
|
70
|
-
DEFAULT: withOpacityValue('--ax-color-text-default'),
|
71
|
-
default: withOpacityValue('--ax-color-text-default'),
|
72
|
-
..._colors,
|
73
|
-
},
|
74
|
-
backgroundColor: {
|
75
|
-
default: 'rgba(var(--ax-color-background-default), <alpha-value>)',
|
76
|
-
'border-default': 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
77
|
-
},
|
78
|
-
|
79
|
-
borderColor: {
|
80
|
-
DEFAULT: 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
81
|
-
default: 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
82
|
-
..._colors,
|
83
|
-
},
|
84
|
-
maxWidth: {
|
85
|
-
'8xl': '90rem',
|
86
|
-
},
|
87
|
-
borderRadius: {
|
88
|
-
default: 'var(--ax-rounded-border-default)',
|
89
|
-
},
|
90
|
-
lineHeight: {
|
91
|
-
11: '2.5rem',
|
92
|
-
12: '3rem',
|
93
|
-
12: '3rem',
|
94
|
-
14: '3.5rem',
|
95
|
-
16: '4rem',
|
96
|
-
20: '5rem',
|
97
|
-
},
|
98
|
-
spacing: {
|
99
|
-
default: 'var(--ax-size-default)',
|
100
|
-
},
|
101
|
-
minWidth: {
|
102
|
-
default: 'var(--ax-size-default)',
|
103
|
-
},
|
104
|
-
width: {
|
105
|
-
default: 'var(--ax-size-default)',
|
106
|
-
},
|
107
|
-
maxHeight: {
|
108
|
-
default: 'var(--ax-size-default)',
|
109
|
-
},
|
110
|
-
minHeight: {
|
111
|
-
default: 'var(--ax-size-default)',
|
112
|
-
},
|
113
|
-
height: {
|
114
|
-
default: 'var(--ax-size-default)',
|
115
|
-
},
|
116
|
-
maxHeight: {
|
117
|
-
default: 'var(--ax-size-default)',
|
118
|
-
},
|
119
|
-
},
|
120
|
-
},
|
121
|
-
corePlugins: {
|
122
|
-
preflight: false,
|
123
|
-
},
|
124
|
-
plugins: [
|
125
|
-
plugin(function ({ addUtilities }) {
|
126
|
-
const acorexClasses = {
|
127
|
-
'.h1': {
|
128
|
-
'font-size': '3rem',
|
129
|
-
'font-weight': '700',
|
130
|
-
'line-height': '3rem',
|
131
|
-
},
|
132
|
-
'.h2': {
|
133
|
-
'font-size': '2.5rem',
|
134
|
-
'font-weight': '700',
|
135
|
-
'line-height': '2.5rem',
|
136
|
-
},
|
137
|
-
'.h3': {
|
138
|
-
'font-size': '1.875rem',
|
139
|
-
'font-weight': '700',
|
140
|
-
'line-height': '1.875rem',
|
141
|
-
},
|
142
|
-
'.h4': {
|
143
|
-
'font-size': '1.5rem',
|
144
|
-
'font-weight': '700',
|
145
|
-
'line-height': '1.5rem',
|
146
|
-
},
|
147
|
-
'.h5': {
|
148
|
-
'font-size': '1.25rem',
|
149
|
-
'font-weight': '700',
|
150
|
-
'line-height': '1.25rem',
|
151
|
-
},
|
152
|
-
'.h6': {
|
153
|
-
'font-size': '1.125rem',
|
154
|
-
'font-weight': '700',
|
155
|
-
'line-height': '1.125rem',
|
156
|
-
},
|
157
|
-
'.heading': {
|
158
|
-
width: '100%',
|
159
|
-
'border-bottom': '1px solid',
|
160
|
-
'border-color': 'rgba(var(--ax-color-border-default))',
|
161
|
-
'line-height': '0.1em',
|
162
|
-
margin: '1rem auto',
|
163
|
-
},
|
164
|
-
'.heading > span': {
|
165
|
-
background: 'rgba(var(--ax-color-surface))',
|
166
|
-
padding: '0 0.75rem',
|
167
|
-
},
|
168
|
-
'.heading-start': {
|
169
|
-
'text-align': 'start',
|
170
|
-
},
|
171
|
-
'.heading-center': {
|
172
|
-
'text-align': 'center',
|
173
|
-
},
|
174
|
-
'.heading-end': {
|
175
|
-
'text-align': 'end',
|
176
|
-
},
|
177
|
-
'.link': {
|
178
|
-
color: 'rgba(var(--ax-color-primary-500))',
|
179
|
-
cursor: 'pointer',
|
180
|
-
},
|
181
|
-
'.link:hover': {
|
182
|
-
'text-decoration': 'underline',
|
183
|
-
},
|
184
|
-
'.link:visited': {
|
185
|
-
color: 'rgba(var(--ax-color-primary-700))',
|
186
|
-
},
|
187
|
-
'.animate-slow': {
|
188
|
-
animationDuration: '2s',
|
189
|
-
},
|
190
|
-
'.animate-slower': {
|
191
|
-
animationDuration: '3s',
|
192
|
-
},
|
193
|
-
'.animate-2xslower': {
|
194
|
-
animationDuration: '5s',
|
195
|
-
},
|
196
|
-
'.animate-fast': {
|
197
|
-
animationDuration: '800ms',
|
198
|
-
},
|
199
|
-
'.animate-faster': {
|
200
|
-
animationDuration: '500ms',
|
201
|
-
},
|
202
|
-
'.animate-2xfaster': {
|
203
|
-
animationDuration: '250ms',
|
204
|
-
},
|
205
|
-
'.card': {
|
206
|
-
backgroundColor: 'rgb(var(--ax-color-surface))',
|
207
|
-
border: '1px solid',
|
208
|
-
borderColor: 'rgb(var(--ax-color-border-default))',
|
209
|
-
borderRadius: 'var(--ax-rounded-border-default)',
|
210
|
-
},
|
211
|
-
'.tabs-fit': {
|
212
|
-
width: '100%',
|
213
|
-
},
|
214
|
-
'.xs': {
|
215
|
-
'--ax-size-default': '2rem',
|
216
|
-
},
|
217
|
-
'.sm': {
|
218
|
-
'--ax-size-default': '2.25rem',
|
219
|
-
},
|
220
|
-
'.md': {
|
221
|
-
'--ax-size-default': '2.5rem',
|
222
|
-
},
|
223
|
-
'.lg': {
|
224
|
-
'--ax-size-default': '3rem',
|
225
|
-
},
|
226
|
-
'.xl': {
|
227
|
-
'--ax-size-default': '3.5rem',
|
228
|
-
},
|
229
|
-
};
|
230
|
-
addUtilities(acorexClasses, ['responsive', 'hover', 'focus']);
|
231
|
-
}),
|
232
|
-
childSelector,
|
233
|
-
],
|
234
|
-
});
|
1
|
+
const plugin = require('tailwindcss/plugin');
|
2
|
+
const { withAnimations } = require('animated-tailwindcss');
|
3
|
+
|
4
|
+
function withOpacityValue(variable) {
|
5
|
+
return ({ opacityValue }) => {
|
6
|
+
if (opacityValue === undefined) {
|
7
|
+
return `rgb(var(${variable}))`;
|
8
|
+
}
|
9
|
+
return `rgb(var(${variable}) ,${opacityValue})`;
|
10
|
+
};
|
11
|
+
}
|
12
|
+
|
13
|
+
const childSelector = plugin(function ({ addVariant }) {
|
14
|
+
addVariant('child', '& > *');
|
15
|
+
addVariant('child-hover', '& > *:hover');
|
16
|
+
addVariant('child-focus', '& > *:focus');
|
17
|
+
addVariant('child-focus-within', '& > *:focus-within');
|
18
|
+
});
|
19
|
+
|
20
|
+
const _colors = {
|
21
|
+
ghost: 'rgba(var(--ax-color-ghost), <alpha-value>)',
|
22
|
+
'ghost-fore': 'rgba(var(--ax-color-ghost-fore), <alpha-value>)',
|
23
|
+
|
24
|
+
surface: 'rgba(var(--ax-color-surface), <alpha-value>)',
|
25
|
+
'surface-fore': 'rgba(var(--ax-color-surface-fore), <alpha-value>)',
|
26
|
+
|
27
|
+
'on-surface': 'rgba(var(--ax-color-on-surface), <alpha-value>)',
|
28
|
+
'on-surface-fore': 'rgba(var(--ax-color-on-surface-fore), <alpha-value>)',
|
29
|
+
|
30
|
+
'input-surface': 'rgba(var(--ax-color-input-surface), <alpha-value>)',
|
31
|
+
'input-surface-fore': 'rgba(var(--ax-color-input-surface-fore), <alpha-value>)',
|
32
|
+
};
|
33
|
+
|
34
|
+
const createPalete = function (colorName) {
|
35
|
+
return {
|
36
|
+
DEFAULT: `rgba(var(--ax-color-${colorName}-500), <alpha-value>)`,
|
37
|
+
fore: `rgba(var(--ax-color-${colorName}-fore), <alpha-value>)`,
|
38
|
+
'fore-tint': `rgba(var(--ax-color-${colorName}-fore-tint), <alpha-value>)`,
|
39
|
+
50: `rgba(var(--ax-color-${colorName}-50), <alpha-value>)`,
|
40
|
+
100: `rgba(var(--ax-color-${colorName}-100), <alpha-value>)`,
|
41
|
+
200: `rgba(var(--ax-color-${colorName}-200), <alpha-value>)`,
|
42
|
+
300: `rgba(var(--ax-color-${colorName}-300), <alpha-value>)`,
|
43
|
+
400: `rgba(var(--ax-color-${colorName}-400), <alpha-value>)`,
|
44
|
+
500: `rgba(var(--ax-color-${colorName}-500), <alpha-value>)`,
|
45
|
+
600: `rgba(var(--ax-color-${colorName}-600), <alpha-value>)`,
|
46
|
+
700: `rgba(var(--ax-color-${colorName}-700), <alpha-value>)`,
|
47
|
+
800: `rgba(var(--ax-color-${colorName}-800), <alpha-value>)`,
|
48
|
+
900: `rgba(var(--ax-color-${colorName}-900), <alpha-value>)`,
|
49
|
+
950: `rgba(var(--ax-color-${colorName}-950), <alpha-value>)`,
|
50
|
+
};
|
51
|
+
};
|
52
|
+
|
53
|
+
module.exports = withAnimations({
|
54
|
+
prefix: 'ax-',
|
55
|
+
content: ['./src/**/*.{html,ts,scss}', './projects/**/*.{html,ts,scss}'],
|
56
|
+
darkMode: 'class',
|
57
|
+
theme: {
|
58
|
+
extend: {
|
59
|
+
colors: {
|
60
|
+
primary: createPalete('primary'),
|
61
|
+
secondary: createPalete('secondary'),
|
62
|
+
success: createPalete('success'),
|
63
|
+
danger: createPalete('danger'),
|
64
|
+
warning: createPalete('warning'),
|
65
|
+
info: createPalete('info'),
|
66
|
+
neutral: createPalete('neutral'),
|
67
|
+
..._colors,
|
68
|
+
},
|
69
|
+
textColor: {
|
70
|
+
DEFAULT: withOpacityValue('--ax-color-text-default'),
|
71
|
+
default: withOpacityValue('--ax-color-text-default'),
|
72
|
+
..._colors,
|
73
|
+
},
|
74
|
+
backgroundColor: {
|
75
|
+
default: 'rgba(var(--ax-color-background-default), <alpha-value>)',
|
76
|
+
'border-default': 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
77
|
+
},
|
78
|
+
|
79
|
+
borderColor: {
|
80
|
+
DEFAULT: 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
81
|
+
default: 'rgba(var(--ax-color-border-default), <alpha-value>)',
|
82
|
+
..._colors,
|
83
|
+
},
|
84
|
+
maxWidth: {
|
85
|
+
'8xl': '90rem',
|
86
|
+
},
|
87
|
+
borderRadius: {
|
88
|
+
default: 'var(--ax-rounded-border-default)',
|
89
|
+
},
|
90
|
+
lineHeight: {
|
91
|
+
11: '2.5rem',
|
92
|
+
12: '3rem',
|
93
|
+
12: '3rem',
|
94
|
+
14: '3.5rem',
|
95
|
+
16: '4rem',
|
96
|
+
20: '5rem',
|
97
|
+
},
|
98
|
+
spacing: {
|
99
|
+
default: 'var(--ax-size-default)',
|
100
|
+
},
|
101
|
+
minWidth: {
|
102
|
+
default: 'var(--ax-size-default)',
|
103
|
+
},
|
104
|
+
width: {
|
105
|
+
default: 'var(--ax-size-default)',
|
106
|
+
},
|
107
|
+
maxHeight: {
|
108
|
+
default: 'var(--ax-size-default)',
|
109
|
+
},
|
110
|
+
minHeight: {
|
111
|
+
default: 'var(--ax-size-default)',
|
112
|
+
},
|
113
|
+
height: {
|
114
|
+
default: 'var(--ax-size-default)',
|
115
|
+
},
|
116
|
+
maxHeight: {
|
117
|
+
default: 'var(--ax-size-default)',
|
118
|
+
},
|
119
|
+
},
|
120
|
+
},
|
121
|
+
corePlugins: {
|
122
|
+
preflight: false,
|
123
|
+
},
|
124
|
+
plugins: [
|
125
|
+
plugin(function ({ addUtilities }) {
|
126
|
+
const acorexClasses = {
|
127
|
+
'.h1': {
|
128
|
+
'font-size': '3rem',
|
129
|
+
'font-weight': '700',
|
130
|
+
'line-height': '3rem',
|
131
|
+
},
|
132
|
+
'.h2': {
|
133
|
+
'font-size': '2.5rem',
|
134
|
+
'font-weight': '700',
|
135
|
+
'line-height': '2.5rem',
|
136
|
+
},
|
137
|
+
'.h3': {
|
138
|
+
'font-size': '1.875rem',
|
139
|
+
'font-weight': '700',
|
140
|
+
'line-height': '1.875rem',
|
141
|
+
},
|
142
|
+
'.h4': {
|
143
|
+
'font-size': '1.5rem',
|
144
|
+
'font-weight': '700',
|
145
|
+
'line-height': '1.5rem',
|
146
|
+
},
|
147
|
+
'.h5': {
|
148
|
+
'font-size': '1.25rem',
|
149
|
+
'font-weight': '700',
|
150
|
+
'line-height': '1.25rem',
|
151
|
+
},
|
152
|
+
'.h6': {
|
153
|
+
'font-size': '1.125rem',
|
154
|
+
'font-weight': '700',
|
155
|
+
'line-height': '1.125rem',
|
156
|
+
},
|
157
|
+
'.heading': {
|
158
|
+
width: '100%',
|
159
|
+
'border-bottom': '1px solid',
|
160
|
+
'border-color': 'rgba(var(--ax-color-border-default))',
|
161
|
+
'line-height': '0.1em',
|
162
|
+
margin: '1rem auto',
|
163
|
+
},
|
164
|
+
'.heading > span': {
|
165
|
+
background: 'rgba(var(--ax-color-surface))',
|
166
|
+
padding: '0 0.75rem',
|
167
|
+
},
|
168
|
+
'.heading-start': {
|
169
|
+
'text-align': 'start',
|
170
|
+
},
|
171
|
+
'.heading-center': {
|
172
|
+
'text-align': 'center',
|
173
|
+
},
|
174
|
+
'.heading-end': {
|
175
|
+
'text-align': 'end',
|
176
|
+
},
|
177
|
+
'.link': {
|
178
|
+
color: 'rgba(var(--ax-color-primary-500))',
|
179
|
+
cursor: 'pointer',
|
180
|
+
},
|
181
|
+
'.link:hover': {
|
182
|
+
'text-decoration': 'underline',
|
183
|
+
},
|
184
|
+
'.link:visited': {
|
185
|
+
color: 'rgba(var(--ax-color-primary-700))',
|
186
|
+
},
|
187
|
+
'.animate-slow': {
|
188
|
+
animationDuration: '2s',
|
189
|
+
},
|
190
|
+
'.animate-slower': {
|
191
|
+
animationDuration: '3s',
|
192
|
+
},
|
193
|
+
'.animate-2xslower': {
|
194
|
+
animationDuration: '5s',
|
195
|
+
},
|
196
|
+
'.animate-fast': {
|
197
|
+
animationDuration: '800ms',
|
198
|
+
},
|
199
|
+
'.animate-faster': {
|
200
|
+
animationDuration: '500ms',
|
201
|
+
},
|
202
|
+
'.animate-2xfaster': {
|
203
|
+
animationDuration: '250ms',
|
204
|
+
},
|
205
|
+
'.card': {
|
206
|
+
backgroundColor: 'rgb(var(--ax-color-surface))',
|
207
|
+
border: '1px solid',
|
208
|
+
borderColor: 'rgb(var(--ax-color-border-default))',
|
209
|
+
borderRadius: 'var(--ax-rounded-border-default)',
|
210
|
+
},
|
211
|
+
'.tabs-fit': {
|
212
|
+
width: '100%',
|
213
|
+
},
|
214
|
+
'.xs': {
|
215
|
+
'--ax-size-default': '2rem',
|
216
|
+
},
|
217
|
+
'.sm': {
|
218
|
+
'--ax-size-default': '2.25rem',
|
219
|
+
},
|
220
|
+
'.md': {
|
221
|
+
'--ax-size-default': '2.5rem',
|
222
|
+
},
|
223
|
+
'.lg': {
|
224
|
+
'--ax-size-default': '3rem',
|
225
|
+
},
|
226
|
+
'.xl': {
|
227
|
+
'--ax-size-default': '3.5rem',
|
228
|
+
},
|
229
|
+
};
|
230
|
+
addUtilities(acorexClasses, ['responsive', 'hover', 'focus']);
|
231
|
+
}),
|
232
|
+
childSelector,
|
233
|
+
],
|
234
|
+
});
|