@vaadin/vaadin-lumo-styles 25.0.0-alpha5 → 25.0.0-alpha7

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 (223) hide show
  1. package/components/accordion-heading.css +14 -0
  2. package/components/accordion-panel.css +15 -0
  3. package/components/accordion.css +7 -0
  4. package/components/app-layout.css +11 -0
  5. package/components/avatar-group.css +31 -0
  6. package/components/avatar.css +17 -0
  7. package/components/button.css +12 -0
  8. package/components/card.css +50 -0
  9. package/components/charts.css +11 -0
  10. package/components/checkbox-group.css +23 -0
  11. package/components/checkbox.css +14 -0
  12. package/components/combo-box.css +47 -0
  13. package/components/confirm-dialog.css +17 -0
  14. package/components/context-menu.css +32 -0
  15. package/components/crud.css +40 -0
  16. package/components/custom-field.css +20 -0
  17. package/components/dashboard.css +34 -0
  18. package/components/date-picker.css +49 -0
  19. package/components/date-time-picker.css +28 -0
  20. package/components/details-summary.css +11 -0
  21. package/components/details.css +12 -0
  22. package/components/dialog.css +16 -0
  23. package/components/drawer-toggle.css +14 -0
  24. package/components/email-field.css +25 -0
  25. package/components/field-highlighter.css +22 -0
  26. package/components/form-item.css +11 -0
  27. package/components/form-layout.css +11 -0
  28. package/components/grid-filter-column.css +6 -0
  29. package/components/grid-filter.css +12 -0
  30. package/components/grid-pro-edit-column.css +48 -0
  31. package/components/grid-pro.css +14 -0
  32. package/components/grid-selection-column.css +6 -0
  33. package/components/grid-sort-column.css +6 -0
  34. package/components/grid-sorter.css +19 -0
  35. package/components/grid-tree-column.css +6 -0
  36. package/components/grid-tree-toggle.css +11 -0
  37. package/components/grid.css +11 -0
  38. package/components/horizontal-layout.css +11 -0
  39. package/components/icon.css +11 -0
  40. package/components/input-container.css +11 -0
  41. package/components/integer-field.css +25 -0
  42. package/components/item.css +11 -0
  43. package/components/list-box.css +11 -0
  44. package/components/login-form.css +14 -0
  45. package/components/login.css +15 -0
  46. package/components/map.css +11 -0
  47. package/components/master-detail-layout.css +11 -0
  48. package/components/menu-bar.css +47 -0
  49. package/components/message-input.css +13 -0
  50. package/components/message-list.css +6 -0
  51. package/components/message.css +12 -0
  52. package/components/multi-select-combo-box.css +61 -0
  53. package/components/notification.css +15 -0
  54. package/components/number-field.css +25 -0
  55. package/components/overlay.css +11 -0
  56. package/components/password-field.css +32 -0
  57. package/components/popover.css +14 -0
  58. package/components/progress-bar.css +11 -0
  59. package/components/radio-button.css +14 -0
  60. package/components/radio-group.css +23 -0
  61. package/components/rich-text-editor.css +26 -0
  62. package/components/scroller.css +11 -0
  63. package/components/select.css +48 -0
  64. package/components/side-nav-item.css +14 -0
  65. package/components/side-nav.css +12 -0
  66. package/components/split-layout.css +11 -0
  67. package/components/tab.css +11 -0
  68. package/components/tabs.css +12 -0
  69. package/components/tabsheet.css +19 -0
  70. package/components/text-area.css +25 -0
  71. package/components/text-field.css +23 -0
  72. package/components/time-picker.css +43 -0
  73. package/components/tooltip.css +14 -0
  74. package/components/upload.css +28 -0
  75. package/components/vertical-layout.css +11 -0
  76. package/components.css +71 -0
  77. package/font-icons.js +28 -26
  78. package/global.css +14 -0
  79. package/lumo.css +8 -0
  80. package/mixins/input-field-shared.js +1 -2
  81. package/mixins/menu-overlay.js +0 -2
  82. package/package.json +8 -6
  83. package/props.css +12 -0
  84. package/src/components/accordion-heading.css +42 -0
  85. package/src/components/accordion-panel.css +38 -0
  86. package/src/components/app-layout.css +193 -0
  87. package/src/components/avatar-group-menu-item.css +22 -0
  88. package/src/components/avatar-group-overlay.css +15 -0
  89. package/src/components/avatar-group.css +67 -0
  90. package/src/components/avatar.css +110 -0
  91. package/src/components/button.css +335 -0
  92. package/src/components/card.css +38 -0
  93. package/src/components/chart.css +88 -0
  94. package/src/components/checkbox-group.css +18 -0
  95. package/src/components/checkbox.css +341 -0
  96. package/src/components/combo-box-item.css +18 -0
  97. package/src/components/combo-box-overlay.css +15 -0
  98. package/src/components/combo-box.css +14 -0
  99. package/src/components/confirm-dialog-overlay.css +59 -0
  100. package/src/components/context-menu-item.css +39 -0
  101. package/src/components/context-menu-list-box.css +40 -0
  102. package/src/components/context-menu-overlay.css +41 -0
  103. package/src/components/crud-dialog-overlay.css +57 -0
  104. package/src/components/crud-edit.css +30 -0
  105. package/src/components/crud.css +157 -0
  106. package/src/components/custom-field.css +102 -0
  107. package/src/components/dashboard-layout.css +94 -0
  108. package/src/components/dashboard-section.css +113 -0
  109. package/src/components/dashboard-widget.css +224 -0
  110. package/src/components/dashboard.css +23 -0
  111. package/src/components/date-picker-month-calendar.css +192 -0
  112. package/src/components/date-picker-overlay-content.css +161 -0
  113. package/src/components/date-picker-overlay.css +60 -0
  114. package/src/components/date-picker-year.css +35 -0
  115. package/src/components/date-picker.css +41 -0
  116. package/src/components/date-time-picker.css +36 -0
  117. package/src/components/details-summary.css +131 -0
  118. package/src/components/details.css +37 -0
  119. package/src/components/dialog-overlay.css +173 -0
  120. package/src/components/drawer-toggle.css +51 -0
  121. package/src/components/email-field.css +26 -0
  122. package/src/components/field-outline.css +51 -0
  123. package/src/components/form-item.css +36 -0
  124. package/src/components/form-layout.css +11 -0
  125. package/src/components/grid-filter.css +16 -0
  126. package/src/components/grid-pro-edit-select.css +19 -0
  127. package/src/components/grid-pro.css +84 -0
  128. package/src/components/grid-sorter.css +70 -0
  129. package/src/components/grid-tree-toggle.css +104 -0
  130. package/src/components/grid.css +755 -0
  131. package/src/components/horizontal-layout.css +38 -0
  132. package/src/components/icon.css +47 -0
  133. package/src/components/input-container.css +230 -0
  134. package/src/components/item.css +94 -0
  135. package/src/components/list-box.css +31 -0
  136. package/src/components/login-form-wrapper.css +128 -0
  137. package/src/components/login-overlay-wrapper.css +179 -0
  138. package/src/components/map.css +437 -0
  139. package/src/components/master-detail-layout.css +26 -0
  140. package/src/components/menu-bar-button.css +128 -0
  141. package/src/components/menu-bar-item.css +24 -0
  142. package/src/components/menu-bar-overlay.css +10 -0
  143. package/src/components/menu-bar.css +31 -0
  144. package/src/components/message-input.css +30 -0
  145. package/src/components/message.css +82 -0
  146. package/src/components/multi-select-combo-box-chip.css +113 -0
  147. package/src/components/multi-select-combo-box-container.css +20 -0
  148. package/src/components/multi-select-combo-box-item.css +13 -0
  149. package/src/components/multi-select-combo-box-overlay.css +18 -0
  150. package/src/components/multi-select-combo-box.css +98 -0
  151. package/src/components/notification-card.css +228 -0
  152. package/src/components/notification-container.css +53 -0
  153. package/src/components/number-field.css +53 -0
  154. package/src/components/password-field-button.css +19 -0
  155. package/src/components/password-field.css +24 -0
  156. package/src/components/popover-overlay.css +162 -0
  157. package/src/components/progress-bar.css +295 -0
  158. package/src/components/radio-button.css +156 -0
  159. package/src/components/radio-group.css +18 -0
  160. package/src/components/rich-text-editor-popup-overlay.css +27 -0
  161. package/src/components/rich-text-editor.css +485 -0
  162. package/src/components/scroller.css +40 -0
  163. package/src/components/select-overlay.css +54 -0
  164. package/src/components/select-value-button.css +57 -0
  165. package/src/components/select.css +56 -0
  166. package/src/components/side-nav-item.css +170 -0
  167. package/src/components/side-nav.css +102 -0
  168. package/src/components/split-layout.css +132 -0
  169. package/src/components/tab.css +246 -0
  170. package/src/components/tabs.css +285 -0
  171. package/src/components/tabsheet.css +59 -0
  172. package/src/components/text-area.css +116 -0
  173. package/src/components/time-picker-overlay.css +15 -0
  174. package/src/components/time-picker.css +36 -0
  175. package/src/components/tooltip-overlay.css +53 -0
  176. package/src/components/upload-file-list.css +24 -0
  177. package/src/components/upload-file.css +133 -0
  178. package/src/components/upload-icon.css +14 -0
  179. package/src/components/upload.css +56 -0
  180. package/src/components/user-tag.css +48 -0
  181. package/src/components/user-tags-overlay.css +67 -0
  182. package/src/components/vertical-layout.css +38 -0
  183. package/src/global/badge.css +167 -0
  184. package/src/global/dark.css +93 -0
  185. package/src/global/style.css +93 -0
  186. package/src/global/typography.css +113 -0
  187. package/src/mixins/checkable-field.css +67 -0
  188. package/src/mixins/combo-box-loader.css +14 -0
  189. package/src/mixins/combo-box-overlay.css +30 -0
  190. package/src/mixins/dashboard-item.css +253 -0
  191. package/src/mixins/field-base.css +187 -0
  192. package/src/mixins/field-button.css +46 -0
  193. package/src/mixins/field-error-message.css +36 -0
  194. package/src/mixins/field-helper.css +62 -0
  195. package/src/mixins/field-label.css +62 -0
  196. package/src/mixins/field-required.css +26 -0
  197. package/src/mixins/grid-pro-editor.css +35 -0
  198. package/src/mixins/group-field.css +58 -0
  199. package/src/mixins/loader.css +48 -0
  200. package/src/mixins/menu-overlay-core.css +36 -0
  201. package/src/mixins/menu-overlay-ext.css +63 -0
  202. package/src/mixins/overlay.css +113 -0
  203. package/src/mixins/resizable-overlay.css +99 -0
  204. package/src/props/color.css +98 -0
  205. package/src/props/icons.css +61 -0
  206. package/src/props/reset.css +11 -0
  207. package/src/props/sizing.css +19 -0
  208. package/src/props/spacing.css +27 -0
  209. package/src/props/style.css +21 -0
  210. package/src/props/typography.css +24 -0
  211. package/src/utilities/accessibility.css +17 -0
  212. package/src/utilities/background.css +189 -0
  213. package/src/utilities/border.css +173 -0
  214. package/src/utilities/filter.css +37 -0
  215. package/src/utilities/flexbox-grid.css +781 -0
  216. package/src/utilities/layout.css +629 -0
  217. package/src/utilities/shadows.css +29 -0
  218. package/src/utilities/sizing.css +142 -0
  219. package/src/utilities/spacing.css +682 -0
  220. package/src/utilities/transition.css +46 -0
  221. package/src/utilities/typography.css +424 -0
  222. package/utility.css +17 -0
  223. package/vaadin-iconset.js +2 -0
@@ -0,0 +1,781 @@
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
+ /* === Align content === */
7
+ .content-center {
8
+ align-content: center;
9
+ }
10
+
11
+ .content-end {
12
+ align-content: flex-end;
13
+ }
14
+
15
+ .content-start {
16
+ align-content: flex-start;
17
+ }
18
+
19
+ .content-around {
20
+ align-content: space-around;
21
+ }
22
+
23
+ .content-between {
24
+ align-content: space-between;
25
+ }
26
+
27
+ .content-evenly {
28
+ align-content: space-evenly;
29
+ }
30
+
31
+ .content-stretch {
32
+ align-content: stretch;
33
+ }
34
+
35
+ /* === Align items === */
36
+ .items-baseline {
37
+ align-items: baseline;
38
+ }
39
+
40
+ .items-center {
41
+ align-items: center;
42
+ }
43
+
44
+ .items-end {
45
+ align-items: flex-end;
46
+ }
47
+
48
+ .items-start {
49
+ align-items: flex-start;
50
+ }
51
+
52
+ .items-stretch {
53
+ align-items: stretch;
54
+ }
55
+
56
+ /* === Align self === */
57
+ .self-auto {
58
+ align-self: auto;
59
+ }
60
+
61
+ .self-baseline {
62
+ align-self: baseline;
63
+ }
64
+
65
+ .self-center {
66
+ align-self: center;
67
+ }
68
+
69
+ .self-end {
70
+ align-self: flex-end;
71
+ }
72
+
73
+ .self-start {
74
+ align-self: flex-start;
75
+ }
76
+
77
+ .self-stretch {
78
+ align-self: stretch;
79
+ }
80
+
81
+ /* === Flex === */
82
+ .flex-1 {
83
+ flex: 1 1 0%;
84
+ }
85
+
86
+ .flex-auto {
87
+ flex: 1 1 auto;
88
+ }
89
+
90
+ .flex-none {
91
+ flex: none;
92
+ }
93
+
94
+ /* === Flex direction === */
95
+ .flex-col {
96
+ flex-direction: column;
97
+ }
98
+
99
+ .flex-col-reverse {
100
+ flex-direction: column-reverse;
101
+ }
102
+
103
+ .flex-row {
104
+ flex-direction: row;
105
+ }
106
+
107
+ .flex-row-reverse {
108
+ flex-direction: row-reverse;
109
+ }
110
+
111
+ /* === Flex grow === */
112
+ .flex-grow {
113
+ flex-grow: 1;
114
+ }
115
+
116
+ .flex-grow-0 {
117
+ flex-grow: 0;
118
+ }
119
+
120
+ /* === Flex shrink === */
121
+ .flex-shrink {
122
+ flex-shrink: 1;
123
+ }
124
+
125
+ .flex-shrink-0 {
126
+ flex-shrink: 0;
127
+ }
128
+
129
+ /* === Flex wrap === */
130
+ .flex-nowrap {
131
+ flex-wrap: nowrap;
132
+ }
133
+
134
+ .flex-wrap {
135
+ flex-wrap: wrap;
136
+ }
137
+
138
+ .flex-wrap-reverse {
139
+ flex-wrap: wrap-reverse;
140
+ }
141
+
142
+ /* === Gap === */
143
+ .gap-xs {
144
+ gap: var(--lumo-space-xs);
145
+ }
146
+
147
+ .gap-s {
148
+ gap: var(--lumo-space-s);
149
+ }
150
+
151
+ .gap-m {
152
+ gap: var(--lumo-space-m);
153
+ }
154
+
155
+ .gap-l {
156
+ gap: var(--lumo-space-l);
157
+ }
158
+
159
+ .gap-xl {
160
+ gap: var(--lumo-space-xl);
161
+ }
162
+
163
+ /* === Gap (column) === */
164
+ .gap-x-xs {
165
+ column-gap: var(--lumo-space-xs);
166
+ }
167
+
168
+ .gap-x-s {
169
+ column-gap: var(--lumo-space-s);
170
+ }
171
+
172
+ .gap-x-m {
173
+ column-gap: var(--lumo-space-m);
174
+ }
175
+
176
+ .gap-x-l {
177
+ column-gap: var(--lumo-space-l);
178
+ }
179
+
180
+ .gap-x-xl {
181
+ column-gap: var(--lumo-space-xl);
182
+ }
183
+
184
+ /* === Gap (row) === */
185
+ .gap-y-xs {
186
+ row-gap: var(--lumo-space-xs);
187
+ }
188
+
189
+ .gap-y-s {
190
+ row-gap: var(--lumo-space-s);
191
+ }
192
+
193
+ .gap-y-m {
194
+ row-gap: var(--lumo-space-m);
195
+ }
196
+
197
+ .gap-y-l {
198
+ row-gap: var(--lumo-space-l);
199
+ }
200
+
201
+ .gap-y-xl {
202
+ row-gap: var(--lumo-space-xl);
203
+ }
204
+
205
+ /* === Grid auto flow === */
206
+ .grid-flow-col {
207
+ grid-auto-flow: column;
208
+ }
209
+
210
+ .grid-flow-row {
211
+ grid-auto-flow: row;
212
+ }
213
+
214
+ /* === Grid columns === */
215
+ .grid-cols-1 {
216
+ grid-template-columns: repeat(1, minmax(0, 1fr));
217
+ }
218
+
219
+ .grid-cols-2 {
220
+ grid-template-columns: repeat(2, minmax(0, 1fr));
221
+ }
222
+
223
+ .grid-cols-3 {
224
+ grid-template-columns: repeat(3, minmax(0, 1fr));
225
+ }
226
+
227
+ .grid-cols-4 {
228
+ grid-template-columns: repeat(4, minmax(0, 1fr));
229
+ }
230
+
231
+ .grid-cols-5 {
232
+ grid-template-columns: repeat(5, minmax(0, 1fr));
233
+ }
234
+
235
+ .grid-cols-6 {
236
+ grid-template-columns: repeat(6, minmax(0, 1fr));
237
+ }
238
+
239
+ .grid-cols-7 {
240
+ grid-template-columns: repeat(7, minmax(0, 1fr));
241
+ }
242
+
243
+ .grid-cols-8 {
244
+ grid-template-columns: repeat(8, minmax(0, 1fr));
245
+ }
246
+
247
+ .grid-cols-9 {
248
+ grid-template-columns: repeat(9, minmax(0, 1fr));
249
+ }
250
+
251
+ .grid-cols-10 {
252
+ grid-template-columns: repeat(10, minmax(0, 1fr));
253
+ }
254
+
255
+ .grid-cols-11 {
256
+ grid-template-columns: repeat(11, minmax(0, 1fr));
257
+ }
258
+
259
+ .grid-cols-12 {
260
+ grid-template-columns: repeat(12, minmax(0, 1fr));
261
+ }
262
+
263
+ /* === Grid rows === */
264
+ .grid-rows-1 {
265
+ grid-template-rows: repeat(1, minmax(0, 1fr));
266
+ }
267
+
268
+ .grid-rows-2 {
269
+ grid-template-rows: repeat(2, minmax(0, 1fr));
270
+ }
271
+
272
+ .grid-rows-3 {
273
+ grid-template-rows: repeat(3, minmax(0, 1fr));
274
+ }
275
+
276
+ .grid-rows-4 {
277
+ grid-template-rows: repeat(4, minmax(0, 1fr));
278
+ }
279
+
280
+ .grid-rows-5 {
281
+ grid-template-rows: repeat(5, minmax(0, 1fr));
282
+ }
283
+
284
+ .grid-rows-6 {
285
+ grid-template-rows: repeat(6, minmax(0, 1fr));
286
+ }
287
+
288
+ /* === Justify content === */
289
+ .justify-center {
290
+ justify-content: center;
291
+ }
292
+
293
+ .justify-end {
294
+ justify-content: flex-end;
295
+ }
296
+
297
+ .justify-start {
298
+ justify-content: flex-start;
299
+ }
300
+
301
+ .justify-around {
302
+ justify-content: space-around;
303
+ }
304
+
305
+ .justify-between {
306
+ justify-content: space-between;
307
+ }
308
+
309
+ .justify-evenly {
310
+ justify-content: space-evenly;
311
+ }
312
+
313
+ /* === Span (column) === */
314
+ .col-span-1 {
315
+ grid-column: span 1 / span 1;
316
+ }
317
+
318
+ .col-span-2 {
319
+ grid-column: span 2 / span 2;
320
+ }
321
+
322
+ .col-span-3 {
323
+ grid-column: span 3 / span 3;
324
+ }
325
+
326
+ .col-span-4 {
327
+ grid-column: span 4 / span 4;
328
+ }
329
+
330
+ .col-span-5 {
331
+ grid-column: span 5 / span 5;
332
+ }
333
+
334
+ .col-span-6 {
335
+ grid-column: span 6 / span 6;
336
+ }
337
+
338
+ .col-span-7 {
339
+ grid-column: span 7 / span 7;
340
+ }
341
+
342
+ .col-span-8 {
343
+ grid-column: span 8 / span 8;
344
+ }
345
+
346
+ .col-span-9 {
347
+ grid-column: span 9 / span 9;
348
+ }
349
+
350
+ .col-span-10 {
351
+ grid-column: span 10 / span 10;
352
+ }
353
+
354
+ .col-span-11 {
355
+ grid-column: span 11 / span 11;
356
+ }
357
+
358
+ .col-span-12 {
359
+ grid-column: span 12 / span 12;
360
+ }
361
+
362
+ .col-span-full {
363
+ grid-column: 1 / -1;
364
+ }
365
+
366
+ /* === Span (row) === */
367
+ .row-span-1 {
368
+ grid-row: span 1 / span 1;
369
+ }
370
+
371
+ .row-span-2 {
372
+ grid-row: span 2 / span 2;
373
+ }
374
+
375
+ .row-span-3 {
376
+ grid-row: span 3 / span 3;
377
+ }
378
+
379
+ .row-span-4 {
380
+ grid-row: span 4 / span 4;
381
+ }
382
+
383
+ .row-span-5 {
384
+ grid-row: span 5 / span 5;
385
+ }
386
+
387
+ .row-span-6 {
388
+ grid-row: span 6 / span 6;
389
+ }
390
+
391
+ .row-span-full {
392
+ grid-row: 1 / -1;
393
+ }
394
+
395
+ /* === Responsive design === */
396
+ @media (min-width: 640px) {
397
+ .sm\:items-baseline {
398
+ align-items: baseline;
399
+ }
400
+
401
+ .sm\:items-center {
402
+ align-items: center;
403
+ }
404
+
405
+ .sm\:items-end {
406
+ align-items: flex-end;
407
+ }
408
+
409
+ .sm\:items-start {
410
+ align-items: flex-start;
411
+ }
412
+
413
+ .sm\:items-stretch {
414
+ align-items: stretch;
415
+ }
416
+
417
+ .sm\:flex-col {
418
+ flex-direction: column;
419
+ }
420
+
421
+ .sm\:flex-row {
422
+ flex-direction: row;
423
+ }
424
+
425
+ .sm\:grid-cols-1 {
426
+ grid-template-columns: repeat(1, minmax(0, 1fr));
427
+ }
428
+
429
+ .sm\:grid-cols-2 {
430
+ grid-template-columns: repeat(2, minmax(0, 1fr));
431
+ }
432
+
433
+ .sm\:grid-cols-3 {
434
+ grid-template-columns: repeat(3, minmax(0, 1fr));
435
+ }
436
+
437
+ .sm\:grid-cols-4 {
438
+ grid-template-columns: repeat(4, minmax(0, 1fr));
439
+ }
440
+
441
+ .sm\:grid-cols-5 {
442
+ grid-template-columns: repeat(5, minmax(0, 1fr));
443
+ }
444
+
445
+ .sm\:grid-cols-6 {
446
+ grid-template-columns: repeat(6, minmax(0, 1fr));
447
+ }
448
+
449
+ .sm\:grid-cols-7 {
450
+ grid-template-columns: repeat(7, minmax(0, 1fr));
451
+ }
452
+
453
+ .sm\:grid-cols-8 {
454
+ grid-template-columns: repeat(8, minmax(0, 1fr));
455
+ }
456
+
457
+ .sm\:grid-cols-9 {
458
+ grid-template-columns: repeat(9, minmax(0, 1fr));
459
+ }
460
+
461
+ .sm\:grid-cols-10 {
462
+ grid-template-columns: repeat(10, minmax(0, 1fr));
463
+ }
464
+
465
+ .sm\:grid-cols-11 {
466
+ grid-template-columns: repeat(11, minmax(0, 1fr));
467
+ }
468
+
469
+ .sm\:grid-cols-12 {
470
+ grid-template-columns: repeat(12, minmax(0, 1fr));
471
+ }
472
+ }
473
+
474
+ @media (min-width: 768px) {
475
+ .md\:items-baseline {
476
+ align-items: baseline;
477
+ }
478
+
479
+ .md\:items-center {
480
+ align-items: center;
481
+ }
482
+
483
+ .md\:items-end {
484
+ align-items: flex-end;
485
+ }
486
+
487
+ .md\:items-start {
488
+ align-items: flex-start;
489
+ }
490
+
491
+ .md\:items-stretch {
492
+ align-items: stretch;
493
+ }
494
+
495
+ .md\:flex-col {
496
+ flex-direction: column;
497
+ }
498
+
499
+ .md\:flex-row {
500
+ flex-direction: row;
501
+ }
502
+
503
+ .md\:grid-cols-1 {
504
+ grid-template-columns: repeat(1, minmax(0, 1fr));
505
+ }
506
+
507
+ .md\:grid-cols-2 {
508
+ grid-template-columns: repeat(2, minmax(0, 1fr));
509
+ }
510
+
511
+ .md\:grid-cols-3 {
512
+ grid-template-columns: repeat(3, minmax(0, 1fr));
513
+ }
514
+
515
+ .md\:grid-cols-4 {
516
+ grid-template-columns: repeat(4, minmax(0, 1fr));
517
+ }
518
+
519
+ .md\:grid-cols-5 {
520
+ grid-template-columns: repeat(5, minmax(0, 1fr));
521
+ }
522
+
523
+ .md\:grid-cols-6 {
524
+ grid-template-columns: repeat(6, minmax(0, 1fr));
525
+ }
526
+
527
+ .md\:grid-cols-7 {
528
+ grid-template-columns: repeat(7, minmax(0, 1fr));
529
+ }
530
+
531
+ .md\:grid-cols-8 {
532
+ grid-template-columns: repeat(8, minmax(0, 1fr));
533
+ }
534
+
535
+ .md\:grid-cols-9 {
536
+ grid-template-columns: repeat(9, minmax(0, 1fr));
537
+ }
538
+
539
+ .md\:grid-cols-10 {
540
+ grid-template-columns: repeat(10, minmax(0, 1fr));
541
+ }
542
+
543
+ .md\:grid-cols-11 {
544
+ grid-template-columns: repeat(11, minmax(0, 1fr));
545
+ }
546
+
547
+ .md\:grid-cols-12 {
548
+ grid-template-columns: repeat(12, minmax(0, 1fr));
549
+ }
550
+ }
551
+ @media (min-width: 1024px) {
552
+ .lg\:items-baseline {
553
+ align-items: baseline;
554
+ }
555
+
556
+ .lg\:items-center {
557
+ align-items: center;
558
+ }
559
+
560
+ .lg\:items-end {
561
+ align-items: flex-end;
562
+ }
563
+
564
+ .lg\:items-start {
565
+ align-items: flex-start;
566
+ }
567
+
568
+ .lg\:items-stretch {
569
+ align-items: stretch;
570
+ }
571
+
572
+ .lg\:flex-col {
573
+ flex-direction: column;
574
+ }
575
+
576
+ .lg\:flex-row {
577
+ flex-direction: row;
578
+ }
579
+
580
+ .lg\:grid-cols-1 {
581
+ grid-template-columns: repeat(1, minmax(0, 1fr));
582
+ }
583
+
584
+ .lg\:grid-cols-2 {
585
+ grid-template-columns: repeat(2, minmax(0, 1fr));
586
+ }
587
+
588
+ .lg\:grid-cols-3 {
589
+ grid-template-columns: repeat(3, minmax(0, 1fr));
590
+ }
591
+
592
+ .lg\:grid-cols-4 {
593
+ grid-template-columns: repeat(4, minmax(0, 1fr));
594
+ }
595
+
596
+ .lg\:grid-cols-5 {
597
+ grid-template-columns: repeat(5, minmax(0, 1fr));
598
+ }
599
+
600
+ .lg\:grid-cols-6 {
601
+ grid-template-columns: repeat(6, minmax(0, 1fr));
602
+ }
603
+
604
+ .lg\:grid-cols-7 {
605
+ grid-template-columns: repeat(7, minmax(0, 1fr));
606
+ }
607
+
608
+ .lg\:grid-cols-8 {
609
+ grid-template-columns: repeat(8, minmax(0, 1fr));
610
+ }
611
+
612
+ .lg\:grid-cols-9 {
613
+ grid-template-columns: repeat(9, minmax(0, 1fr));
614
+ }
615
+
616
+ .lg\:grid-cols-10 {
617
+ grid-template-columns: repeat(10, minmax(0, 1fr));
618
+ }
619
+
620
+ .lg\:grid-cols-11 {
621
+ grid-template-columns: repeat(11, minmax(0, 1fr));
622
+ }
623
+
624
+ .lg\:grid-cols-12 {
625
+ grid-template-columns: repeat(12, minmax(0, 1fr));
626
+ }
627
+ }
628
+ @media (min-width: 1280px) {
629
+ .xl\:items-baseline {
630
+ align-items: baseline;
631
+ }
632
+
633
+ .xl\:items-center {
634
+ align-items: center;
635
+ }
636
+
637
+ .xl\:items-end {
638
+ align-items: flex-end;
639
+ }
640
+
641
+ .xl\:items-start {
642
+ align-items: flex-start;
643
+ }
644
+
645
+ .xl\:items-stretch {
646
+ align-items: stretch;
647
+ }
648
+
649
+ .xl\:flex-col {
650
+ flex-direction: column;
651
+ }
652
+
653
+ .xl\:flex-row {
654
+ flex-direction: row;
655
+ }
656
+
657
+ .xl\:grid-cols-1 {
658
+ grid-template-columns: repeat(1, minmax(0, 1fr));
659
+ }
660
+
661
+ .xl\:grid-cols-2 {
662
+ grid-template-columns: repeat(2, minmax(0, 1fr));
663
+ }
664
+
665
+ .xl\:grid-cols-3 {
666
+ grid-template-columns: repeat(3, minmax(0, 1fr));
667
+ }
668
+
669
+ .xl\:grid-cols-4 {
670
+ grid-template-columns: repeat(4, minmax(0, 1fr));
671
+ }
672
+
673
+ .xl\:grid-cols-5 {
674
+ grid-template-columns: repeat(5, minmax(0, 1fr));
675
+ }
676
+
677
+ .xl\:grid-cols-6 {
678
+ grid-template-columns: repeat(6, minmax(0, 1fr));
679
+ }
680
+
681
+ .xl\:grid-cols-7 {
682
+ grid-template-columns: repeat(7, minmax(0, 1fr));
683
+ }
684
+
685
+ .xl\:grid-cols-8 {
686
+ grid-template-columns: repeat(8, minmax(0, 1fr));
687
+ }
688
+
689
+ .xl\:grid-cols-9 {
690
+ grid-template-columns: repeat(9, minmax(0, 1fr));
691
+ }
692
+
693
+ .xl\:grid-cols-10 {
694
+ grid-template-columns: repeat(10, minmax(0, 1fr));
695
+ }
696
+
697
+ .xl\:grid-cols-11 {
698
+ grid-template-columns: repeat(11, minmax(0, 1fr));
699
+ }
700
+
701
+ .xl\:grid-cols-12 {
702
+ grid-template-columns: repeat(12, minmax(0, 1fr));
703
+ }
704
+ }
705
+ @media (min-width: 1536px) {
706
+ .\32xl\:items-baseline {
707
+ align-items: baseline;
708
+ }
709
+
710
+ .\32xl\:items-center {
711
+ align-items: center;
712
+ }
713
+
714
+ .\32xl\:items-end {
715
+ align-items: flex-end;
716
+ }
717
+
718
+ .\32xl\:items-start {
719
+ align-items: flex-start;
720
+ }
721
+
722
+ .\32xl\:items-stretch {
723
+ align-items: stretch;
724
+ }
725
+
726
+ .\32xl\:flex-col {
727
+ flex-direction: column;
728
+ }
729
+
730
+ .\32xl\:flex-row {
731
+ flex-direction: row;
732
+ }
733
+
734
+ .\32xl\:grid-cols-1 {
735
+ grid-template-columns: repeat(1, minmax(0, 1fr));
736
+ }
737
+
738
+ .\32xl\:grid-cols-2 {
739
+ grid-template-columns: repeat(2, minmax(0, 1fr));
740
+ }
741
+
742
+ .\32xl\:grid-cols-3 {
743
+ grid-template-columns: repeat(3, minmax(0, 1fr));
744
+ }
745
+
746
+ .\32xl\:grid-cols-4 {
747
+ grid-template-columns: repeat(4, minmax(0, 1fr));
748
+ }
749
+
750
+ .\32xl\:grid-cols-5 {
751
+ grid-template-columns: repeat(5, minmax(0, 1fr));
752
+ }
753
+
754
+ .\32xl\:grid-cols-6 {
755
+ grid-template-columns: repeat(6, minmax(0, 1fr));
756
+ }
757
+
758
+ .\32xl\:grid-cols-7 {
759
+ grid-template-columns: repeat(7, minmax(0, 1fr));
760
+ }
761
+
762
+ .\32xl\:grid-cols-8 {
763
+ grid-template-columns: repeat(8, minmax(0, 1fr));
764
+ }
765
+
766
+ .\32xl\:grid-cols-9 {
767
+ grid-template-columns: repeat(9, minmax(0, 1fr));
768
+ }
769
+
770
+ .\32xl\:grid-cols-10 {
771
+ grid-template-columns: repeat(10, minmax(0, 1fr));
772
+ }
773
+
774
+ .\32xl\:grid-cols-11 {
775
+ grid-template-columns: repeat(11, minmax(0, 1fr));
776
+ }
777
+
778
+ .\32xl\:grid-cols-12 {
779
+ grid-template-columns: repeat(12, minmax(0, 1fr));
780
+ }
781
+ }