@shuriken-ui/tailwind 4.0.0-alpha.5 → 4.0.0-alpha.7
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 +55 -0
- package/lib/css/focus.css +2 -9
- package/lib/css/mark.css +0 -2
- package/lib/css/mask.css +0 -2
- package/lib/css/slimscroll.css +8 -5
- package/lib/index.css +8 -52
- package/lib/theme.css +40 -31
- package/package.json +2 -2
- package/lib/css/accordion.css +0 -175
- package/lib/css/autocomplete.css +0 -510
- package/lib/css/avatar-group.css +0 -137
- package/lib/css/avatar.css +0 -737
- package/lib/css/breadcrumb.css +0 -62
- package/lib/css/button-action.css +0 -107
- package/lib/css/button-close.css +0 -116
- package/lib/css/button-group.css +0 -235
- package/lib/css/button-icon.css +0 -96
- package/lib/css/button.css +0 -564
- package/lib/css/card.css +0 -68
- package/lib/css/checkbox.css +0 -98
- package/lib/css/dropdown-divider.css +0 -5
- package/lib/css/dropdown-item.css +0 -61
- package/lib/css/dropdown.css +0 -101
- package/lib/css/fullscreen-dropfile.css +0 -62
- package/lib/css/heading.css +0 -77
- package/lib/css/icon-box.css +0 -304
- package/lib/css/input-file-regular.css +0 -254
- package/lib/css/input-file.css +0 -223
- package/lib/css/input-help-text.css +0 -6
- package/lib/css/input-number.css +0 -468
- package/lib/css/input.css +0 -402
- package/lib/css/kbd.css +0 -93
- package/lib/css/label.css +0 -5
- package/lib/css/link.css +0 -7
- package/lib/css/list.css +0 -23
- package/lib/css/listbox.css +0 -510
- package/lib/css/message-text.css +0 -71
- package/lib/css/message.css +0 -243
- package/lib/css/modal.css +0 -50
- package/lib/css/pagination.css +0 -92
- package/lib/css/paragraph.css +0 -77
- package/lib/css/placeholder-page.css +0 -43
- package/lib/css/placeload.css +0 -11
- package/lib/css/progress-circle.css +0 -17
- package/lib/css/progress.css +0 -105
- package/lib/css/prose.css +0 -22
- package/lib/css/radio.css +0 -72
- package/lib/css/select.css +0 -403
- package/lib/css/snack.css +0 -100
- package/lib/css/switch-ball.css +0 -93
- package/lib/css/switch-thin.css +0 -75
- package/lib/css/tab-slider.css +0 -189
- package/lib/css/tabs.css +0 -173
- package/lib/css/tag.css +0 -311
- package/lib/css/text.css +0 -77
- package/lib/css/textarea.css +0 -227
- package/lib/css/theme-switch.css +0 -64
- package/lib/css/theme-toggle.css +0 -61
- package/lib/css/toast.css +0 -131
- package/lib/css/tooltip.css +0 -98
package/lib/css/avatar.css
DELETED
@@ -1,737 +0,0 @@
|
|
1
|
-
/* @utility nui-avatar */
|
2
|
-
|
3
|
-
@utility nui-avatar {
|
4
|
-
@apply relative inline-flex shrink-0 items-center justify-center outline-none;
|
5
|
-
|
6
|
-
&.nui-avatar-mask:not(.nui-avatar-rounded):not(.nui-avatar-rounded-md):not(.nui-avatar-rounded-lg):not(.nui-avatar-rounded-full) {
|
7
|
-
@apply nui-mask;
|
8
|
-
}
|
9
|
-
}
|
10
|
-
@utility nui-avatar-inner {
|
11
|
-
@apply flex items-center justify-center overflow-hidden text-center;
|
12
|
-
@apply h-full w-full;
|
13
|
-
@apply transition-all duration-300;
|
14
|
-
}
|
15
|
-
@utility nui-avatar-badge {
|
16
|
-
@apply absolute z-10 block overflow-hidden rounded-full;
|
17
|
-
@apply bg-white dark:bg-muted-800;
|
18
|
-
|
19
|
-
.nui-badge-img {
|
20
|
-
@apply relative scale-90 object-cover;
|
21
|
-
@apply h-full w-full rounded-full;
|
22
|
-
}
|
23
|
-
}
|
24
|
-
@utility nui-avatar-img {
|
25
|
-
@apply object-cover;
|
26
|
-
@apply h-full max-h-full w-full max-w-full;
|
27
|
-
@apply shadow-xs;
|
28
|
-
}
|
29
|
-
@utility nui-avatar-text {
|
30
|
-
@apply font-sans font-medium text-center uppercase;
|
31
|
-
}
|
32
|
-
@utility nui-avatar-dot {
|
33
|
-
@apply absolute block;
|
34
|
-
@apply border border-white dark:border-muted-800 rounded-full;
|
35
|
-
|
36
|
-
&.nui-avatar-dot-primary {
|
37
|
-
@apply bg-primary-500;
|
38
|
-
}
|
39
|
-
|
40
|
-
&.nui-avatar-dot-info {
|
41
|
-
@apply bg-info-500;
|
42
|
-
}
|
43
|
-
|
44
|
-
&.nui-avatar-dot-success {
|
45
|
-
@apply bg-success-500;
|
46
|
-
}
|
47
|
-
|
48
|
-
&.nui-avatar-dot-warning {
|
49
|
-
@apply bg-warning-500;
|
50
|
-
}
|
51
|
-
|
52
|
-
&.nui-avatar-dot-danger {
|
53
|
-
@apply bg-danger-500;
|
54
|
-
}
|
55
|
-
|
56
|
-
&.nui-avatar-dot-yellow {
|
57
|
-
@apply bg-yellow-400;
|
58
|
-
}
|
59
|
-
|
60
|
-
&.nui-avatar-dot-pink {
|
61
|
-
@apply bg-pink-500;
|
62
|
-
}
|
63
|
-
|
64
|
-
&.nui-avatar-dot-indigo {
|
65
|
-
@apply bg-indigo-500;
|
66
|
-
}
|
67
|
-
}
|
68
|
-
@utility nui-avatar-ring {
|
69
|
-
&.nui-avatar-rounded-full {
|
70
|
-
@apply ring-2;
|
71
|
-
@apply ring-offset-2 ring-offset-white dark:ring-offset-muted-800;
|
72
|
-
}
|
73
|
-
|
74
|
-
&.nui-avatar-ring-primary {
|
75
|
-
@apply bg-primary-500;
|
76
|
-
}
|
77
|
-
|
78
|
-
&.nui-avatar-ring-info {
|
79
|
-
@apply bg-info-500;
|
80
|
-
}
|
81
|
-
|
82
|
-
&.nui-avatar-ring-success {
|
83
|
-
@apply bg-success-500;
|
84
|
-
}
|
85
|
-
|
86
|
-
&.nui-avatar-ring-warning {
|
87
|
-
@apply bg-warning-500;
|
88
|
-
}
|
89
|
-
|
90
|
-
&.nui-avatar-ring-danger {
|
91
|
-
@apply bg-danger-500;
|
92
|
-
}
|
93
|
-
|
94
|
-
&.nui-avatar-ring-yellow {
|
95
|
-
@apply bg-yellow-400;
|
96
|
-
}
|
97
|
-
|
98
|
-
&.nui-avatar-ring-pink {
|
99
|
-
@apply bg-pink-500;
|
100
|
-
}
|
101
|
-
|
102
|
-
&.nui-avatar-ring-indigo {
|
103
|
-
@apply bg-indigo-500;
|
104
|
-
}
|
105
|
-
}
|
106
|
-
@utility nui-avatar-xxs {
|
107
|
-
@apply h-6 w-6;
|
108
|
-
|
109
|
-
.nui-avatar-badge {
|
110
|
-
@apply h-3 w-3 -bottom-1 -end-1;
|
111
|
-
}
|
112
|
-
|
113
|
-
.nui-avatar-dot {
|
114
|
-
@apply h-1.5 w-1.5;
|
115
|
-
}
|
116
|
-
|
117
|
-
.nui-avatar-text {
|
118
|
-
@apply text-xs;
|
119
|
-
}
|
120
|
-
|
121
|
-
&.nui-avatar-rounded-none {
|
122
|
-
@apply rounded-none;
|
123
|
-
|
124
|
-
.nui-avatar-inner {
|
125
|
-
@apply rounded-none;
|
126
|
-
}
|
127
|
-
|
128
|
-
.nui-avatar-dot {
|
129
|
-
@apply end-0 top-0;
|
130
|
-
}
|
131
|
-
}
|
132
|
-
|
133
|
-
&.nui-avatar-rounded-sm {
|
134
|
-
@apply rounded-xs;
|
135
|
-
|
136
|
-
.nui-avatar-inner {
|
137
|
-
@apply rounded-xs;
|
138
|
-
}
|
139
|
-
|
140
|
-
.nui-avatar-dot {
|
141
|
-
@apply end-0 top-0;
|
142
|
-
}
|
143
|
-
}
|
144
|
-
|
145
|
-
&.nui-avatar-rounded-md {
|
146
|
-
@apply rounded-sm;
|
147
|
-
|
148
|
-
.nui-avatar-inner {
|
149
|
-
@apply rounded-sm;
|
150
|
-
}
|
151
|
-
|
152
|
-
.nui-avatar-dot {
|
153
|
-
@apply end-0 top-0;
|
154
|
-
}
|
155
|
-
}
|
156
|
-
|
157
|
-
&.nui-avatar-rounded-lg {
|
158
|
-
@apply rounded-md;
|
159
|
-
|
160
|
-
.nui-avatar-inner {
|
161
|
-
@apply rounded-md;
|
162
|
-
}
|
163
|
-
|
164
|
-
.nui-avatar-dot {
|
165
|
-
@apply end-0 top-0;
|
166
|
-
}
|
167
|
-
}
|
168
|
-
|
169
|
-
&.nui-avatar-rounded-full {
|
170
|
-
.nui-avatar-dot {
|
171
|
-
@apply end-0 top-0;
|
172
|
-
}
|
173
|
-
}
|
174
|
-
}
|
175
|
-
@utility nui-avatar-xs {
|
176
|
-
@apply h-8 w-8;
|
177
|
-
|
178
|
-
.nui-avatar-badge {
|
179
|
-
@apply h-4 w-4 -bottom-1 -end-1;
|
180
|
-
}
|
181
|
-
|
182
|
-
.nui-avatar-dot {
|
183
|
-
@apply h-2 w-2;
|
184
|
-
}
|
185
|
-
|
186
|
-
.nui-avatar-text {
|
187
|
-
@apply text-sm;
|
188
|
-
}
|
189
|
-
|
190
|
-
&.nui-avatar-rounded-none {
|
191
|
-
@apply rounded-none;
|
192
|
-
|
193
|
-
.nui-avatar-inner {
|
194
|
-
@apply rounded-none;
|
195
|
-
}
|
196
|
-
|
197
|
-
.nui-avatar-dot {
|
198
|
-
@apply end-0 top-0;
|
199
|
-
}
|
200
|
-
}
|
201
|
-
|
202
|
-
&.nui-avatar-rounded-sm {
|
203
|
-
@apply rounded-xs;
|
204
|
-
|
205
|
-
.nui-avatar-inner {
|
206
|
-
@apply rounded-xs;
|
207
|
-
}
|
208
|
-
|
209
|
-
.nui-avatar-dot {
|
210
|
-
@apply end-0 top-0;
|
211
|
-
}
|
212
|
-
}
|
213
|
-
|
214
|
-
&.nui-avatar-rounded-md {
|
215
|
-
@apply rounded-sm;
|
216
|
-
|
217
|
-
.nui-avatar-inner {
|
218
|
-
@apply rounded-sm;
|
219
|
-
}
|
220
|
-
|
221
|
-
.nui-avatar-dot {
|
222
|
-
@apply end-0 top-0;
|
223
|
-
}
|
224
|
-
}
|
225
|
-
|
226
|
-
&.nui-avatar-rounded-lg {
|
227
|
-
@apply rounded-lg;
|
228
|
-
|
229
|
-
.nui-avatar-inner {
|
230
|
-
@apply rounded-lg;
|
231
|
-
}
|
232
|
-
|
233
|
-
.nui-avatar-dot {
|
234
|
-
@apply end-0 top-0;
|
235
|
-
}
|
236
|
-
}
|
237
|
-
|
238
|
-
&.nui-avatar-rounded-full {
|
239
|
-
.nui-avatar-dot {
|
240
|
-
@apply end-0 top-0;
|
241
|
-
}
|
242
|
-
}
|
243
|
-
}
|
244
|
-
@utility nui-avatar-sm {
|
245
|
-
@apply h-10 w-10;
|
246
|
-
|
247
|
-
.nui-avatar-badge {
|
248
|
-
@apply h-5 w-5 -bottom-1 -end-1;
|
249
|
-
}
|
250
|
-
|
251
|
-
.nui-avatar-dot {
|
252
|
-
@apply h-2 w-2;
|
253
|
-
}
|
254
|
-
|
255
|
-
.nui-avatar-text {
|
256
|
-
@apply text-sm;
|
257
|
-
}
|
258
|
-
|
259
|
-
&.nui-avatar-rounded-none {
|
260
|
-
@apply rounded-none;
|
261
|
-
|
262
|
-
.nui-avatar-inner {
|
263
|
-
@apply rounded-none;
|
264
|
-
}
|
265
|
-
|
266
|
-
.nui-avatar-dot {
|
267
|
-
@apply end-0 top-0;
|
268
|
-
}
|
269
|
-
}
|
270
|
-
|
271
|
-
&.nui-avatar-rounded-sm {
|
272
|
-
@apply rounded-md;
|
273
|
-
|
274
|
-
.nui-avatar-inner {
|
275
|
-
@apply rounded-md;
|
276
|
-
}
|
277
|
-
|
278
|
-
.nui-avatar-dot {
|
279
|
-
@apply end-0 top-0;
|
280
|
-
}
|
281
|
-
}
|
282
|
-
|
283
|
-
&.nui-avatar-rounded-md {
|
284
|
-
@apply rounded-lg;
|
285
|
-
|
286
|
-
.nui-avatar-inner {
|
287
|
-
@apply rounded-lg;
|
288
|
-
}
|
289
|
-
|
290
|
-
.nui-avatar-dot {
|
291
|
-
@apply end-0 top-0;
|
292
|
-
}
|
293
|
-
}
|
294
|
-
|
295
|
-
&.nui-avatar-rounded-lg {
|
296
|
-
@apply rounded-xl;
|
297
|
-
|
298
|
-
.nui-avatar-inner {
|
299
|
-
@apply rounded-xl;
|
300
|
-
}
|
301
|
-
|
302
|
-
.nui-avatar-dot {
|
303
|
-
@apply end-0 top-0;
|
304
|
-
}
|
305
|
-
}
|
306
|
-
|
307
|
-
&.nui-avatar-rounded-full {
|
308
|
-
.nui-avatar-dot {
|
309
|
-
@apply end-0.5 top-0.5;
|
310
|
-
}
|
311
|
-
}
|
312
|
-
}
|
313
|
-
@utility nui-avatar-md {
|
314
|
-
@apply h-12 w-12;
|
315
|
-
|
316
|
-
.nui-avatar-badge {
|
317
|
-
@apply h-5 w-5 -bottom-1 -end-1;
|
318
|
-
}
|
319
|
-
|
320
|
-
.nui-avatar-dot {
|
321
|
-
@apply h-3 w-3;
|
322
|
-
}
|
323
|
-
|
324
|
-
.nui-avatar-text {
|
325
|
-
@apply text-sm;
|
326
|
-
}
|
327
|
-
|
328
|
-
&.nui-avatar-rounded-none {
|
329
|
-
@apply rounded-none;
|
330
|
-
|
331
|
-
.nui-avatar-inner {
|
332
|
-
@apply rounded-none;
|
333
|
-
}
|
334
|
-
|
335
|
-
.nui-avatar-dot {
|
336
|
-
@apply end-0 top-0;
|
337
|
-
}
|
338
|
-
}
|
339
|
-
|
340
|
-
&.nui-avatar-rounded-sm {
|
341
|
-
@apply rounded-lg;
|
342
|
-
|
343
|
-
.nui-avatar-inner {
|
344
|
-
@apply rounded-lg;
|
345
|
-
}
|
346
|
-
|
347
|
-
.nui-avatar-dot {
|
348
|
-
@apply end-0 top-0;
|
349
|
-
}
|
350
|
-
}
|
351
|
-
|
352
|
-
&.nui-avatar-rounded-md {
|
353
|
-
@apply rounded-xl;
|
354
|
-
|
355
|
-
.nui-avatar-inner {
|
356
|
-
@apply rounded-xl;
|
357
|
-
}
|
358
|
-
|
359
|
-
.nui-avatar-dot {
|
360
|
-
@apply end-0 top-0;
|
361
|
-
}
|
362
|
-
}
|
363
|
-
|
364
|
-
&.nui-avatar-rounded-lg {
|
365
|
-
@apply rounded-2xl;
|
366
|
-
|
367
|
-
.nui-avatar-inner {
|
368
|
-
@apply rounded-2xl;
|
369
|
-
}
|
370
|
-
|
371
|
-
.nui-avatar-dot {
|
372
|
-
@apply end-0 top-0;
|
373
|
-
}
|
374
|
-
}
|
375
|
-
|
376
|
-
&.nui-avatar-rounded-full {
|
377
|
-
.nui-avatar-dot {
|
378
|
-
@apply end-0.5 top-0.5;
|
379
|
-
}
|
380
|
-
}
|
381
|
-
}
|
382
|
-
@utility nui-avatar-lg {
|
383
|
-
@apply h-16 w-16;
|
384
|
-
|
385
|
-
.nui-avatar-badge {
|
386
|
-
@apply h-6 w-6 -bottom-1 -end-1;
|
387
|
-
}
|
388
|
-
|
389
|
-
.nui-avatar-dot {
|
390
|
-
@apply h-3 w-3;
|
391
|
-
}
|
392
|
-
|
393
|
-
.nui-avatar-text {
|
394
|
-
@apply text-sm;
|
395
|
-
}
|
396
|
-
|
397
|
-
&.nui-avatar-rounded-none {
|
398
|
-
@apply rounded-none;
|
399
|
-
|
400
|
-
.nui-avatar-inner {
|
401
|
-
@apply rounded-none;
|
402
|
-
}
|
403
|
-
|
404
|
-
.nui-avatar-dot {
|
405
|
-
@apply end-0 top-0;
|
406
|
-
}
|
407
|
-
}
|
408
|
-
|
409
|
-
&.nui-avatar-rounded-sm {
|
410
|
-
@apply rounded-lg;
|
411
|
-
|
412
|
-
.nui-avatar-inner {
|
413
|
-
@apply rounded-lg;
|
414
|
-
}
|
415
|
-
|
416
|
-
.nui-avatar-dot {
|
417
|
-
@apply end-0 top-0;
|
418
|
-
}
|
419
|
-
}
|
420
|
-
|
421
|
-
&.nui-avatar-rounded-md {
|
422
|
-
@apply rounded-xl;
|
423
|
-
|
424
|
-
.nui-avatar-inner {
|
425
|
-
@apply rounded-xl;
|
426
|
-
}
|
427
|
-
|
428
|
-
.nui-avatar-dot {
|
429
|
-
@apply end-0 top-0;
|
430
|
-
}
|
431
|
-
}
|
432
|
-
|
433
|
-
&.nui-avatar-rounded-lg {
|
434
|
-
@apply rounded-2xl;
|
435
|
-
|
436
|
-
.nui-avatar-inner {
|
437
|
-
@apply rounded-2xl;
|
438
|
-
}
|
439
|
-
|
440
|
-
.nui-avatar-dot {
|
441
|
-
@apply end-0 top-0;
|
442
|
-
}
|
443
|
-
}
|
444
|
-
|
445
|
-
&.nui-avatar-rounded-full {
|
446
|
-
.nui-avatar-dot {
|
447
|
-
@apply end-1 top-1;
|
448
|
-
}
|
449
|
-
}
|
450
|
-
}
|
451
|
-
@utility nui-avatar-xl {
|
452
|
-
@apply h-20 w-20;
|
453
|
-
|
454
|
-
.nui-avatar-badge {
|
455
|
-
@apply h-8 w-8 -bottom-1 -end-1;
|
456
|
-
}
|
457
|
-
|
458
|
-
.nui-avatar-dot {
|
459
|
-
@apply h-4 w-4;
|
460
|
-
}
|
461
|
-
|
462
|
-
.nui-avatar-text {
|
463
|
-
@apply text-base;
|
464
|
-
}
|
465
|
-
|
466
|
-
&.nui-avatar-rounded-none {
|
467
|
-
@apply rounded-none;
|
468
|
-
|
469
|
-
.nui-avatar-inner {
|
470
|
-
@apply rounded-none;
|
471
|
-
}
|
472
|
-
|
473
|
-
.nui-avatar-dot {
|
474
|
-
@apply end-0 top-0;
|
475
|
-
}
|
476
|
-
}
|
477
|
-
|
478
|
-
&.nui-avatar-rounded-sm {
|
479
|
-
@apply rounded-xl;
|
480
|
-
|
481
|
-
.nui-avatar-inner {
|
482
|
-
@apply rounded-xl;
|
483
|
-
}
|
484
|
-
|
485
|
-
.nui-avatar-dot {
|
486
|
-
@apply end-0 top-0;
|
487
|
-
}
|
488
|
-
}
|
489
|
-
|
490
|
-
&.nui-avatar-rounded-md {
|
491
|
-
@apply rounded-2xl;
|
492
|
-
|
493
|
-
.nui-avatar-inner {
|
494
|
-
@apply rounded-2xl;
|
495
|
-
}
|
496
|
-
|
497
|
-
.nui-avatar-dot {
|
498
|
-
@apply end-0 top-0;
|
499
|
-
}
|
500
|
-
}
|
501
|
-
|
502
|
-
&.nui-avatar-rounded-lg {
|
503
|
-
@apply rounded-3xl;
|
504
|
-
|
505
|
-
.nui-avatar-inner {
|
506
|
-
@apply rounded-3xl;
|
507
|
-
}
|
508
|
-
|
509
|
-
.nui-avatar-dot {
|
510
|
-
@apply end-0 top-0;
|
511
|
-
}
|
512
|
-
}
|
513
|
-
|
514
|
-
&.nui-avatar-rounded-full {
|
515
|
-
.nui-avatar-dot {
|
516
|
-
@apply end-1 top-1;
|
517
|
-
}
|
518
|
-
}
|
519
|
-
}
|
520
|
-
@utility nui-avatar-2xl {
|
521
|
-
@apply h-24 w-24;
|
522
|
-
|
523
|
-
.nui-avatar-badge {
|
524
|
-
@apply h-10 w-10 -bottom-1.5 -end-1.5;
|
525
|
-
}
|
526
|
-
|
527
|
-
.nui-avatar-dot {
|
528
|
-
@apply h-4 w-4;
|
529
|
-
}
|
530
|
-
|
531
|
-
.nui-avatar-text {
|
532
|
-
@apply text-xl;
|
533
|
-
}
|
534
|
-
|
535
|
-
&.nui-avatar-rounded-none {
|
536
|
-
@apply rounded-none;
|
537
|
-
|
538
|
-
.nui-avatar-inner {
|
539
|
-
@apply rounded-none;
|
540
|
-
}
|
541
|
-
|
542
|
-
.nui-avatar-dot {
|
543
|
-
@apply end-0 top-0;
|
544
|
-
}
|
545
|
-
}
|
546
|
-
|
547
|
-
&.nui-avatar-rounded-sm {
|
548
|
-
@apply rounded-xl;
|
549
|
-
|
550
|
-
.nui-avatar-inner {
|
551
|
-
@apply rounded-xl;
|
552
|
-
}
|
553
|
-
|
554
|
-
.nui-avatar-dot {
|
555
|
-
@apply end-0 top-0;
|
556
|
-
}
|
557
|
-
}
|
558
|
-
|
559
|
-
&.nui-avatar-rounded-md {
|
560
|
-
@apply rounded-2xl;
|
561
|
-
|
562
|
-
.nui-avatar-inner {
|
563
|
-
@apply rounded-2xl;
|
564
|
-
}
|
565
|
-
|
566
|
-
.nui-avatar-dot {
|
567
|
-
@apply end-0 top-0;
|
568
|
-
}
|
569
|
-
}
|
570
|
-
|
571
|
-
&.nui-avatar-rounded-lg {
|
572
|
-
@apply rounded-3xl;
|
573
|
-
|
574
|
-
.nui-avatar-inner {
|
575
|
-
@apply rounded-3xl;
|
576
|
-
}
|
577
|
-
|
578
|
-
.nui-avatar-dot {
|
579
|
-
@apply end-0 top-0;
|
580
|
-
}
|
581
|
-
}
|
582
|
-
|
583
|
-
&.nui-avatar-rounded-full {
|
584
|
-
.nui-avatar-dot {
|
585
|
-
@apply end-1.5 top-1.5;
|
586
|
-
}
|
587
|
-
}
|
588
|
-
}
|
589
|
-
@utility nui-avatar-3xl {
|
590
|
-
@apply h-28 w-28;
|
591
|
-
|
592
|
-
.nui-avatar-badge {
|
593
|
-
@apply h-10 w-10 -bottom-1.5 -end-1.5;
|
594
|
-
}
|
595
|
-
|
596
|
-
.nui-avatar-dot {
|
597
|
-
@apply h-4 w-4;
|
598
|
-
}
|
599
|
-
|
600
|
-
.nui-avatar-text {
|
601
|
-
@apply text-2xl;
|
602
|
-
}
|
603
|
-
|
604
|
-
&.nui-avatar-rounded-none {
|
605
|
-
@apply rounded-none;
|
606
|
-
|
607
|
-
.nui-avatar-inner {
|
608
|
-
@apply rounded-none;
|
609
|
-
}
|
610
|
-
|
611
|
-
.nui-avatar-dot {
|
612
|
-
@apply end-0 top-0;
|
613
|
-
}
|
614
|
-
}
|
615
|
-
|
616
|
-
&.nui-avatar-rounded-sm {
|
617
|
-
@apply rounded-xl;
|
618
|
-
|
619
|
-
.nui-avatar-inner {
|
620
|
-
@apply rounded-xl;
|
621
|
-
}
|
622
|
-
|
623
|
-
.nui-avatar-dot {
|
624
|
-
@apply end-0 top-0;
|
625
|
-
}
|
626
|
-
}
|
627
|
-
|
628
|
-
&.nui-avatar-rounded-md {
|
629
|
-
@apply rounded-2xl;
|
630
|
-
|
631
|
-
.nui-avatar-inner {
|
632
|
-
@apply rounded-2xl;
|
633
|
-
}
|
634
|
-
|
635
|
-
.nui-avatar-dot {
|
636
|
-
@apply end-0 top-0;
|
637
|
-
}
|
638
|
-
}
|
639
|
-
|
640
|
-
&.nui-avatar-rounded-lg {
|
641
|
-
@apply rounded-3xl;
|
642
|
-
|
643
|
-
.nui-avatar-inner {
|
644
|
-
@apply rounded-3xl;
|
645
|
-
}
|
646
|
-
|
647
|
-
.nui-avatar-dot {
|
648
|
-
@apply end-0 top-0;
|
649
|
-
}
|
650
|
-
}
|
651
|
-
|
652
|
-
&.nui-avatar-rounded-full {
|
653
|
-
.nui-avatar-dot {
|
654
|
-
@apply end-2 top-2;
|
655
|
-
}
|
656
|
-
}
|
657
|
-
}
|
658
|
-
@utility nui-avatar-4xl {
|
659
|
-
@apply h-32 w-32;
|
660
|
-
|
661
|
-
.nui-avatar-badge {
|
662
|
-
@apply h-12 w-12 -bottom-2 -end-2;
|
663
|
-
}
|
664
|
-
|
665
|
-
.nui-avatar-dot {
|
666
|
-
@apply h-4 w-4;
|
667
|
-
}
|
668
|
-
|
669
|
-
.nui-avatar-text {
|
670
|
-
@apply text-3xl;
|
671
|
-
}
|
672
|
-
|
673
|
-
&.nui-avatar-rounded-none {
|
674
|
-
@apply rounded-none;
|
675
|
-
|
676
|
-
.nui-avatar-inner {
|
677
|
-
@apply rounded-none;
|
678
|
-
}
|
679
|
-
|
680
|
-
.nui-avatar-dot {
|
681
|
-
@apply end-0 top-0;
|
682
|
-
}
|
683
|
-
}
|
684
|
-
|
685
|
-
&.nui-avatar-rounded-sm {
|
686
|
-
@apply rounded-xl;
|
687
|
-
|
688
|
-
.nui-avatar-inner {
|
689
|
-
@apply rounded-xl;
|
690
|
-
}
|
691
|
-
|
692
|
-
.nui-avatar-dot {
|
693
|
-
@apply end-0 top-0;
|
694
|
-
}
|
695
|
-
}
|
696
|
-
|
697
|
-
&.nui-avatar-rounded-md {
|
698
|
-
@apply rounded-2xl;
|
699
|
-
|
700
|
-
.nui-avatar-inner {
|
701
|
-
@apply rounded-2xl;
|
702
|
-
}
|
703
|
-
|
704
|
-
.nui-avatar-dot {
|
705
|
-
@apply end-0 top-0;
|
706
|
-
}
|
707
|
-
}
|
708
|
-
|
709
|
-
&.nui-avatar-rounded-lg {
|
710
|
-
@apply rounded-3xl;
|
711
|
-
|
712
|
-
.nui-avatar-inner {
|
713
|
-
@apply rounded-3xl;
|
714
|
-
}
|
715
|
-
|
716
|
-
.nui-avatar-dot {
|
717
|
-
@apply end-0 top-0;
|
718
|
-
}
|
719
|
-
}
|
720
|
-
|
721
|
-
&.nui-avatar-rounded-full {
|
722
|
-
.nui-avatar-dot {
|
723
|
-
@apply end-2.5 top-2.5;
|
724
|
-
}
|
725
|
-
}
|
726
|
-
}
|
727
|
-
@utility nui-avatar-rounded-full {
|
728
|
-
@apply rounded-full;
|
729
|
-
|
730
|
-
.nui-avatar-inner {
|
731
|
-
@apply rounded-full;
|
732
|
-
}
|
733
|
-
|
734
|
-
.nui-avatar-badge {
|
735
|
-
@apply -bottom-0 -end-0;
|
736
|
-
}
|
737
|
-
}
|