@vaadin/react-components 25.0.0-alpha18 → 25.0.0-alpha19
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/css/lumo/Utility.module.css +16 -47
- package/css/lumo/utilities/Accessibility.module.css +17 -15
- package/css/lumo/utilities/Background.module.css +189 -150
- package/css/lumo/utilities/Border.module.css +173 -141
- package/css/lumo/utilities/Filter.module.css +35 -26
- package/css/lumo/utilities/FlexboxGrid.module.css +780 -2
- package/css/lumo/utilities/Layout.module.css +544 -413
- package/css/lumo/utilities/Shadows.module.css +27 -20
- package/css/lumo/utilities/Sizing.module.css +142 -115
- package/css/lumo/utilities/Spacing.module.css +682 -536
- package/css/lumo/utilities/Transition.module.css +46 -44
- package/css/lumo/utilities/Typography.module.css +366 -280
- package/package.json +61 -72
- package/utils/createComponent.js +1 -1
- package/utils/createComponent.js.map +1 -1
- package/css/Lumo.css +0 -15
- package/css/lumo/Badge.css +0 -165
- package/css/lumo/Color.css +0 -122
- package/css/lumo/ColorBase.css +0 -87
- package/css/lumo/Font.css +0 -22
- package/css/lumo/FontIcons.css +0 -61
- package/css/lumo/Sizing.css +0 -17
- package/css/lumo/Spacing.css +0 -25
- package/css/lumo/Style.css +0 -19
- package/css/lumo/Typography.css +0 -96
- package/css/lumo/UserColors.css +0 -22
- package/css/lumo/mixins/FieldButton.css +0 -29
- package/css/lumo/mixins/MenuOverlay.css +0 -64
- package/css/lumo/mixins/MenuOverlayCore.css +0 -32
- package/css/lumo/mixins/Overlay.css +0 -67
- package/css/lumo/mixins/RequiredField.css +0 -103
- package/css/lumo/utilities/FlexboxAndGrid.module.css +0 -613
|
@@ -1,338 +1,424 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
/* === Font size === */
|
|
7
|
+
.text-2xs {
|
|
8
|
+
font-size: var(--lumo-font-size-xxs);
|
|
9
|
+
}
|
|
2
10
|
|
|
11
|
+
.text-xs {
|
|
12
|
+
font-size: var(--lumo-font-size-xs);
|
|
13
|
+
}
|
|
3
14
|
|
|
4
|
-
|
|
5
|
-
|
|
15
|
+
.text-s {
|
|
16
|
+
font-size: var(--lumo-font-size-s);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.text-m {
|
|
20
|
+
font-size: var(--lumo-font-size-m);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.text-l {
|
|
24
|
+
font-size: var(--lumo-font-size-l);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.text-xl {
|
|
28
|
+
font-size: var(--lumo-font-size-xl);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.text-2xl {
|
|
32
|
+
font-size: var(--lumo-font-size-xxl);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.text-3xl {
|
|
36
|
+
font-size: var(--lumo-font-size-xxxl);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/* === Font weight === */
|
|
40
|
+
.font-thin {
|
|
41
|
+
font-weight: 100;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.font-extralight {
|
|
45
|
+
font-weight: 200;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.font-light {
|
|
49
|
+
font-weight: 300;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.font-normal {
|
|
53
|
+
font-weight: 400;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.font-medium {
|
|
57
|
+
font-weight: 500;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.font-semibold {
|
|
61
|
+
font-weight: 600;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.font-bold {
|
|
65
|
+
font-weight: 700;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.font-extrabold {
|
|
69
|
+
font-weight: 800;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.font-black {
|
|
73
|
+
font-weight: 900;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* === Line clamp === */
|
|
77
|
+
[class*='line-clamp-'] {
|
|
78
|
+
display: -webkit-box;
|
|
79
|
+
overflow: hidden;
|
|
80
|
+
-webkit-box-orient: vertical;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.line-clamp-1 {
|
|
84
|
+
-webkit-line-clamp: 1;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.line-clamp-2 {
|
|
88
|
+
-webkit-line-clamp: 2;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.line-clamp-3 {
|
|
92
|
+
-webkit-line-clamp: 3;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.line-clamp-4 {
|
|
96
|
+
-webkit-line-clamp: 4;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.line-clamp-5 {
|
|
100
|
+
-webkit-line-clamp: 5;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.line-clamp-6 {
|
|
104
|
+
-webkit-line-clamp: 6;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* === Line height === */
|
|
108
|
+
.leading-none {
|
|
109
|
+
line-height: 1;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.leading-xs {
|
|
113
|
+
line-height: var(--lumo-line-height-xs);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.leading-s {
|
|
117
|
+
line-height: var(--lumo-line-height-s);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.leading-m {
|
|
121
|
+
line-height: var(--lumo-line-height-m);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* === List style type === */
|
|
125
|
+
.list-none {
|
|
126
|
+
list-style-type: none;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/* === Text alignment === */
|
|
130
|
+
.text-left {
|
|
131
|
+
text-align: left;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.text-center {
|
|
135
|
+
text-align: center;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.text-right {
|
|
139
|
+
text-align: right;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.text-justify {
|
|
143
|
+
text-align: justify;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/* === Text color === */
|
|
147
|
+
.text-header {
|
|
148
|
+
color: var(--lumo-header-text-color);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.text-body {
|
|
152
|
+
color: var(--lumo-body-text-color);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.text-secondary {
|
|
156
|
+
color: var(--lumo-secondary-text-color);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.text-tertiary {
|
|
160
|
+
color: var(--lumo-tertiary-text-color);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.text-disabled {
|
|
164
|
+
color: var(--lumo-disabled-text-color);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.text-primary {
|
|
168
|
+
color: var(--lumo-primary-text-color);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.text-primary-contrast {
|
|
172
|
+
color: var(--lumo-primary-contrast-color);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.text-error {
|
|
176
|
+
color: var(--lumo-error-text-color);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.text-error-contrast {
|
|
180
|
+
color: var(--lumo-error-contrast-color);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.text-success {
|
|
184
|
+
color: var(--lumo-success-text-color);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.text-success-contrast {
|
|
188
|
+
color: var(--lumo-success-contrast-color);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.text-warning {
|
|
192
|
+
color: var(--lumo-warning-text-color);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.text-warning-contrast {
|
|
196
|
+
color: var(--lumo-warning-contrast-color);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/* == Text decoration === */
|
|
200
|
+
.line-through {
|
|
201
|
+
text-decoration-line: line-through;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.no-underline {
|
|
205
|
+
text-decoration-line: none;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.underline {
|
|
209
|
+
text-decoration-line: underline;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/* === Text overflow === */
|
|
213
|
+
.overflow-clip {
|
|
214
|
+
text-overflow: clip;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.overflow-ellipsis {
|
|
218
|
+
text-overflow: ellipsis;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* === Text transform === */
|
|
222
|
+
.capitalize {
|
|
223
|
+
text-transform: capitalize;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.lowercase {
|
|
227
|
+
text-transform: lowercase;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.uppercase {
|
|
231
|
+
text-transform: uppercase;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/* === Whitespace === */
|
|
235
|
+
.whitespace-normal {
|
|
236
|
+
white-space: normal;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.whitespace-break-spaces {
|
|
240
|
+
white-space: normal;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.whitespace-nowrap {
|
|
244
|
+
white-space: nowrap;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.whitespace-pre {
|
|
248
|
+
white-space: pre;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.whitespace-pre-line {
|
|
252
|
+
white-space: pre-line;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.whitespace-pre-wrap {
|
|
256
|
+
white-space: pre-wrap;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
/* === Responsive design === */
|
|
260
|
+
@media (min-width: 640px) {
|
|
261
|
+
.sm\:text-2xs {
|
|
6
262
|
font-size: var(--lumo-font-size-xxs);
|
|
7
263
|
}
|
|
8
|
-
|
|
264
|
+
|
|
265
|
+
.sm\:text-xs {
|
|
9
266
|
font-size: var(--lumo-font-size-xs);
|
|
10
267
|
}
|
|
11
|
-
|
|
268
|
+
|
|
269
|
+
.sm\:text-s {
|
|
12
270
|
font-size: var(--lumo-font-size-s);
|
|
13
271
|
}
|
|
14
|
-
|
|
272
|
+
|
|
273
|
+
.sm\:text-m {
|
|
15
274
|
font-size: var(--lumo-font-size-m);
|
|
16
275
|
}
|
|
17
|
-
|
|
276
|
+
|
|
277
|
+
.sm\:text-l {
|
|
18
278
|
font-size: var(--lumo-font-size-l);
|
|
19
279
|
}
|
|
20
|
-
|
|
280
|
+
|
|
281
|
+
.sm\:text-xl {
|
|
21
282
|
font-size: var(--lumo-font-size-xl);
|
|
22
283
|
}
|
|
23
|
-
|
|
284
|
+
|
|
285
|
+
.sm\:text-2xl {
|
|
24
286
|
font-size: var(--lumo-font-size-xxl);
|
|
25
287
|
}
|
|
26
|
-
.text-3xl {
|
|
27
|
-
font-size: var(--lumo-font-size-xxxl);
|
|
28
|
-
}
|
|
29
288
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
font-weight: 100;
|
|
33
|
-
}
|
|
34
|
-
.font-extralight {
|
|
35
|
-
font-weight: 200;
|
|
36
|
-
}
|
|
37
|
-
.font-light {
|
|
38
|
-
font-weight: 300;
|
|
39
|
-
}
|
|
40
|
-
.font-normal {
|
|
41
|
-
font-weight: 400;
|
|
42
|
-
}
|
|
43
|
-
.font-medium {
|
|
44
|
-
font-weight: 500;
|
|
45
|
-
}
|
|
46
|
-
.font-semibold {
|
|
47
|
-
font-weight: 600;
|
|
48
|
-
}
|
|
49
|
-
.font-bold {
|
|
50
|
-
font-weight: 700;
|
|
51
|
-
}
|
|
52
|
-
.font-extrabold {
|
|
53
|
-
font-weight: 800;
|
|
289
|
+
.sm\:text-3xl {
|
|
290
|
+
font-size: var(--lumo-font-size-xxxl);
|
|
54
291
|
}
|
|
55
|
-
|
|
56
|
-
|
|
292
|
+
}
|
|
293
|
+
@media (min-width: 768px) {
|
|
294
|
+
.md\:text-2xs {
|
|
295
|
+
font-size: var(--lumo-font-size-xxs);
|
|
57
296
|
}
|
|
58
297
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
display: -webkit-box;
|
|
62
|
-
overflow: hidden;
|
|
63
|
-
-webkit-box-orient: vertical;
|
|
64
|
-
}
|
|
65
|
-
.line-clamp-1 {
|
|
66
|
-
-webkit-line-clamp: 1;
|
|
67
|
-
}
|
|
68
|
-
.line-clamp-2 {
|
|
69
|
-
-webkit-line-clamp: 2;
|
|
70
|
-
}
|
|
71
|
-
.line-clamp-3 {
|
|
72
|
-
-webkit-line-clamp: 3;
|
|
298
|
+
.md\:text-xs {
|
|
299
|
+
font-size: var(--lumo-font-size-xs);
|
|
73
300
|
}
|
|
74
|
-
|
|
75
|
-
|
|
301
|
+
|
|
302
|
+
.md\:text-s {
|
|
303
|
+
font-size: var(--lumo-font-size-s);
|
|
76
304
|
}
|
|
77
|
-
|
|
78
|
-
|
|
305
|
+
|
|
306
|
+
.md\:text-m {
|
|
307
|
+
font-size: var(--lumo-font-size-m);
|
|
79
308
|
}
|
|
80
|
-
|
|
81
|
-
|
|
309
|
+
|
|
310
|
+
.md\:text-l {
|
|
311
|
+
font-size: var(--lumo-font-size-l);
|
|
82
312
|
}
|
|
83
313
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
line-height: 1;
|
|
314
|
+
.md\:text-xl {
|
|
315
|
+
font-size: var(--lumo-font-size-xl);
|
|
87
316
|
}
|
|
88
|
-
|
|
89
|
-
|
|
317
|
+
|
|
318
|
+
.md\:text-2xl {
|
|
319
|
+
font-size: var(--lumo-font-size-xxl);
|
|
90
320
|
}
|
|
91
|
-
|
|
92
|
-
|
|
321
|
+
|
|
322
|
+
.md\:text-3xl {
|
|
323
|
+
font-size: var(--lumo-font-size-xxxl);
|
|
93
324
|
}
|
|
94
|
-
|
|
95
|
-
|
|
325
|
+
}
|
|
326
|
+
@media (min-width: 1024px) {
|
|
327
|
+
.lg\:text-2xs {
|
|
328
|
+
font-size: var(--lumo-font-size-xxs);
|
|
96
329
|
}
|
|
97
330
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
list-style-type: none;
|
|
331
|
+
.lg\:text-xs {
|
|
332
|
+
font-size: var(--lumo-font-size-xs);
|
|
101
333
|
}
|
|
102
334
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
text-align: left;
|
|
106
|
-
}
|
|
107
|
-
.text-center {
|
|
108
|
-
text-align: center;
|
|
335
|
+
.lg\:text-s {
|
|
336
|
+
font-size: var(--lumo-font-size-s);
|
|
109
337
|
}
|
|
110
|
-
|
|
111
|
-
|
|
338
|
+
|
|
339
|
+
.lg\:text-m {
|
|
340
|
+
font-size: var(--lumo-font-size-m);
|
|
112
341
|
}
|
|
113
|
-
|
|
114
|
-
|
|
342
|
+
|
|
343
|
+
.lg\:text-l {
|
|
344
|
+
font-size: var(--lumo-font-size-l);
|
|
115
345
|
}
|
|
116
346
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
color: var(--lumo-header-text-color);
|
|
347
|
+
.lg\:text-xl {
|
|
348
|
+
font-size: var(--lumo-font-size-xl);
|
|
120
349
|
}
|
|
121
|
-
|
|
122
|
-
|
|
350
|
+
|
|
351
|
+
.lg\:text-2xl {
|
|
352
|
+
font-size: var(--lumo-font-size-xxl);
|
|
123
353
|
}
|
|
124
|
-
|
|
125
|
-
|
|
354
|
+
|
|
355
|
+
.lg\:text-3xl {
|
|
356
|
+
font-size: var(--lumo-font-size-xxxl);
|
|
126
357
|
}
|
|
127
|
-
|
|
128
|
-
|
|
358
|
+
}
|
|
359
|
+
@media (min-width: 1280px) {
|
|
360
|
+
.xl\:text-2xs {
|
|
361
|
+
font-size: var(--lumo-font-size-xxs);
|
|
129
362
|
}
|
|
130
|
-
|
|
131
|
-
|
|
363
|
+
|
|
364
|
+
.xl\:text-xs {
|
|
365
|
+
font-size: var(--lumo-font-size-xs);
|
|
132
366
|
}
|
|
133
|
-
|
|
134
|
-
|
|
367
|
+
|
|
368
|
+
.xl\:text-s {
|
|
369
|
+
font-size: var(--lumo-font-size-s);
|
|
135
370
|
}
|
|
136
|
-
|
|
137
|
-
|
|
371
|
+
|
|
372
|
+
.xl\:text-m {
|
|
373
|
+
font-size: var(--lumo-font-size-m);
|
|
138
374
|
}
|
|
139
|
-
|
|
140
|
-
|
|
375
|
+
|
|
376
|
+
.xl\:text-l {
|
|
377
|
+
font-size: var(--lumo-font-size-l);
|
|
141
378
|
}
|
|
142
|
-
|
|
143
|
-
|
|
379
|
+
|
|
380
|
+
.xl\:text-xl {
|
|
381
|
+
font-size: var(--lumo-font-size-xl);
|
|
144
382
|
}
|
|
145
|
-
|
|
146
|
-
|
|
383
|
+
|
|
384
|
+
.xl\:text-2xl {
|
|
385
|
+
font-size: var(--lumo-font-size-xxl);
|
|
147
386
|
}
|
|
148
|
-
|
|
149
|
-
|
|
387
|
+
|
|
388
|
+
.xl\:text-3xl {
|
|
389
|
+
font-size: var(--lumo-font-size-xxxl);
|
|
150
390
|
}
|
|
151
|
-
|
|
152
|
-
|
|
391
|
+
}
|
|
392
|
+
@media (min-width: 1536px) {
|
|
393
|
+
.\32xl\:text-2xs {
|
|
394
|
+
font-size: var(--lumo-font-size-xxs);
|
|
153
395
|
}
|
|
154
|
-
|
|
155
|
-
|
|
396
|
+
|
|
397
|
+
.\32xl\:text-xs {
|
|
398
|
+
font-size: var(--lumo-font-size-xs);
|
|
156
399
|
}
|
|
157
400
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
text-decoration-line: line-through;
|
|
401
|
+
.\32xl\:text-s {
|
|
402
|
+
font-size: var(--lumo-font-size-s);
|
|
161
403
|
}
|
|
162
|
-
|
|
163
|
-
|
|
404
|
+
|
|
405
|
+
.\32xl\:text-m {
|
|
406
|
+
font-size: var(--lumo-font-size-m);
|
|
164
407
|
}
|
|
165
|
-
|
|
166
|
-
|
|
408
|
+
|
|
409
|
+
.\32xl\:text-l {
|
|
410
|
+
font-size: var(--lumo-font-size-l);
|
|
167
411
|
}
|
|
168
412
|
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
text-overflow: clip;
|
|
413
|
+
.\32xl\:text-xl {
|
|
414
|
+
font-size: var(--lumo-font-size-xl);
|
|
172
415
|
}
|
|
173
|
-
|
|
174
|
-
|
|
416
|
+
|
|
417
|
+
.\32xl\:text-2xl {
|
|
418
|
+
font-size: var(--lumo-font-size-xxl);
|
|
175
419
|
}
|
|
176
420
|
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
text-transform: capitalize;
|
|
180
|
-
}
|
|
181
|
-
.lowercase {
|
|
182
|
-
text-transform: lowercase;
|
|
183
|
-
}
|
|
184
|
-
.uppercase {
|
|
185
|
-
text-transform: uppercase;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
/* === Whitespace === */
|
|
189
|
-
.whitespace-normal {
|
|
190
|
-
white-space: normal;
|
|
191
|
-
}
|
|
192
|
-
.whitespace-break-spaces {
|
|
193
|
-
white-space: normal;
|
|
194
|
-
}
|
|
195
|
-
.whitespace-nowrap {
|
|
196
|
-
white-space: nowrap;
|
|
197
|
-
}
|
|
198
|
-
.whitespace-pre {
|
|
199
|
-
white-space: pre;
|
|
200
|
-
}
|
|
201
|
-
.whitespace-pre-line {
|
|
202
|
-
white-space: pre-line;
|
|
203
|
-
}
|
|
204
|
-
.whitespace-pre-wrap {
|
|
205
|
-
white-space: pre-wrap;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
/* === Responsive design === */
|
|
209
|
-
@media (min-width: 640px) {
|
|
210
|
-
.sm\\:text-2xs {
|
|
211
|
-
font-size: var(--lumo-font-size-xxs);
|
|
212
|
-
}
|
|
213
|
-
.sm\\:text-xs {
|
|
214
|
-
font-size: var(--lumo-font-size-xs);
|
|
215
|
-
}
|
|
216
|
-
.sm\\:text-s {
|
|
217
|
-
font-size: var(--lumo-font-size-s);
|
|
218
|
-
}
|
|
219
|
-
.sm\\:text-m {
|
|
220
|
-
font-size: var(--lumo-font-size-m);
|
|
221
|
-
}
|
|
222
|
-
.sm\\:text-l {
|
|
223
|
-
font-size: var(--lumo-font-size-l);
|
|
224
|
-
}
|
|
225
|
-
.sm\\:text-xl {
|
|
226
|
-
font-size: var(--lumo-font-size-xl);
|
|
227
|
-
}
|
|
228
|
-
.sm\\:text-2xl {
|
|
229
|
-
font-size: var(--lumo-font-size-xxl);
|
|
230
|
-
}
|
|
231
|
-
.sm\\:text-3xl {
|
|
232
|
-
font-size: var(--lumo-font-size-xxxl);
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
@media (min-width: 768px) {
|
|
236
|
-
.md\\:text-2xs {
|
|
237
|
-
font-size: var(--lumo-font-size-xxs);
|
|
238
|
-
}
|
|
239
|
-
.md\\:text-xs {
|
|
240
|
-
font-size: var(--lumo-font-size-xs);
|
|
241
|
-
}
|
|
242
|
-
.md\\:text-s {
|
|
243
|
-
font-size: var(--lumo-font-size-s);
|
|
244
|
-
}
|
|
245
|
-
.md\\:text-m {
|
|
246
|
-
font-size: var(--lumo-font-size-m);
|
|
247
|
-
}
|
|
248
|
-
.md\\:text-l {
|
|
249
|
-
font-size: var(--lumo-font-size-l);
|
|
250
|
-
}
|
|
251
|
-
.md\\:text-xl {
|
|
252
|
-
font-size: var(--lumo-font-size-xl);
|
|
253
|
-
}
|
|
254
|
-
.md\\:text-2xl {
|
|
255
|
-
font-size: var(--lumo-font-size-xxl);
|
|
256
|
-
}
|
|
257
|
-
.md\\:text-3xl {
|
|
258
|
-
font-size: var(--lumo-font-size-xxxl);
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
@media (min-width: 1024px) {
|
|
262
|
-
.lg\\:text-2xs {
|
|
263
|
-
font-size: var(--lumo-font-size-xxs);
|
|
264
|
-
}
|
|
265
|
-
.lg\\:text-xs {
|
|
266
|
-
font-size: var(--lumo-font-size-xs);
|
|
267
|
-
}
|
|
268
|
-
.lg\\:text-s {
|
|
269
|
-
font-size: var(--lumo-font-size-s);
|
|
270
|
-
}
|
|
271
|
-
.lg\\:text-m {
|
|
272
|
-
font-size: var(--lumo-font-size-m);
|
|
273
|
-
}
|
|
274
|
-
.lg\\:text-l {
|
|
275
|
-
font-size: var(--lumo-font-size-l);
|
|
276
|
-
}
|
|
277
|
-
.lg\\:text-xl {
|
|
278
|
-
font-size: var(--lumo-font-size-xl);
|
|
279
|
-
}
|
|
280
|
-
.lg\\:text-2xl {
|
|
281
|
-
font-size: var(--lumo-font-size-xxl);
|
|
282
|
-
}
|
|
283
|
-
.lg\\:text-3xl {
|
|
284
|
-
font-size: var(--lumo-font-size-xxxl);
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
@media (min-width: 1280px) {
|
|
288
|
-
.xl\\:text-2xs {
|
|
289
|
-
font-size: var(--lumo-font-size-xxs);
|
|
290
|
-
}
|
|
291
|
-
.xl\\:text-xs {
|
|
292
|
-
font-size: var(--lumo-font-size-xs);
|
|
293
|
-
}
|
|
294
|
-
.xl\\:text-s {
|
|
295
|
-
font-size: var(--lumo-font-size-s);
|
|
296
|
-
}
|
|
297
|
-
.xl\\:text-m {
|
|
298
|
-
font-size: var(--lumo-font-size-m);
|
|
299
|
-
}
|
|
300
|
-
.xl\\:text-l {
|
|
301
|
-
font-size: var(--lumo-font-size-l);
|
|
302
|
-
}
|
|
303
|
-
.xl\\:text-xl {
|
|
304
|
-
font-size: var(--lumo-font-size-xl);
|
|
305
|
-
}
|
|
306
|
-
.xl\\:text-2xl {
|
|
307
|
-
font-size: var(--lumo-font-size-xxl);
|
|
308
|
-
}
|
|
309
|
-
.xl\\:text-3xl {
|
|
310
|
-
font-size: var(--lumo-font-size-xxxl);
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
@media (min-width: 1536px) {
|
|
314
|
-
.\\32xl\\:text-2xs {
|
|
315
|
-
font-size: var(--lumo-font-size-xxs);
|
|
316
|
-
}
|
|
317
|
-
.\\32xl\\:text-xs {
|
|
318
|
-
font-size: var(--lumo-font-size-xs);
|
|
319
|
-
}
|
|
320
|
-
.\\32xl\\:text-s {
|
|
321
|
-
font-size: var(--lumo-font-size-s);
|
|
322
|
-
}
|
|
323
|
-
.\\32xl\\:text-m {
|
|
324
|
-
font-size: var(--lumo-font-size-m);
|
|
325
|
-
}
|
|
326
|
-
.\\32xl\\:text-l {
|
|
327
|
-
font-size: var(--lumo-font-size-l);
|
|
328
|
-
}
|
|
329
|
-
.\\32xl\\:text-xl {
|
|
330
|
-
font-size: var(--lumo-font-size-xl);
|
|
331
|
-
}
|
|
332
|
-
.\\32xl\\:text-2xl {
|
|
333
|
-
font-size: var(--lumo-font-size-xxl);
|
|
334
|
-
}
|
|
335
|
-
.\\32xl\\:text-3xl {
|
|
336
|
-
font-size: var(--lumo-font-size-xxxl);
|
|
337
|
-
}
|
|
421
|
+
.\32xl\:text-3xl {
|
|
422
|
+
font-size: var(--lumo-font-size-xxxl);
|
|
338
423
|
}
|
|
424
|
+
}
|