@carbon/ibm-products 2.28.0-alpha.4 → 2.28.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/css/index-full-carbon.css +37 -0
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon.css +37 -0
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +37 -0
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/components/Datagrid/useSortableColumns.js +1 -1
- package/es/components/UserAvatar/UserAvatar.js +22 -1
- package/lib/components/Datagrid/useSortableColumns.js +1 -1
- package/lib/components/UserAvatar/UserAvatar.js +22 -1
- package/package.json +3 -3
- package/scss/components/UserAvatar/_user-avatar.scss +27 -0
|
@@ -40524,4 +40524,41 @@ a.cds--side-nav__link--current::before {
|
|
|
40524
40524
|
letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
|
|
40525
40525
|
}
|
|
40526
40526
|
|
|
40527
|
+
.c4p--user-avatar__photo {
|
|
40528
|
+
border-radius: 100%;
|
|
40529
|
+
object-fit: contain;
|
|
40530
|
+
}
|
|
40531
|
+
|
|
40532
|
+
.c4p--user-avatar__photo--xl {
|
|
40533
|
+
position: fixed;
|
|
40534
|
+
border-radius: 100%;
|
|
40535
|
+
object-fit: fill;
|
|
40536
|
+
width: 4rem;
|
|
40537
|
+
height: 4rem;
|
|
40538
|
+
}
|
|
40539
|
+
|
|
40540
|
+
.c4p--user-avatar__photo--lg {
|
|
40541
|
+
position: fixed;
|
|
40542
|
+
border-radius: 100%;
|
|
40543
|
+
object-fit: fill;
|
|
40544
|
+
width: 3rem;
|
|
40545
|
+
height: 3rem;
|
|
40546
|
+
}
|
|
40547
|
+
|
|
40548
|
+
.c4p--user-avatar__photo--md {
|
|
40549
|
+
position: fixed;
|
|
40550
|
+
border-radius: 100%;
|
|
40551
|
+
object-fit: fill;
|
|
40552
|
+
width: 2rem;
|
|
40553
|
+
height: 2rem;
|
|
40554
|
+
}
|
|
40555
|
+
|
|
40556
|
+
.c4p--user-avatar__photo--sm {
|
|
40557
|
+
position: fixed;
|
|
40558
|
+
border-radius: 100%;
|
|
40559
|
+
object-fit: fill;
|
|
40560
|
+
width: 1.5rem;
|
|
40561
|
+
height: 1.5rem;
|
|
40562
|
+
}
|
|
40563
|
+
|
|
40527
40564
|
/*# sourceMappingURL=index-full-carbon.css.map */
|