draft-components 1.1.0 → 1.1.1
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/draft-components.css +5 -1
- package/package.json +1 -1
package/css/draft-components.css
CHANGED
|
@@ -2526,9 +2526,13 @@
|
|
|
2526
2526
|
}
|
|
2527
2527
|
|
|
2528
2528
|
.dc-color-picker__btn > input:checked + .dc-color-picker__btn-check {
|
|
2529
|
-
|
|
2529
|
+
position: absolute;
|
|
2530
|
+
top: 50%;
|
|
2531
|
+
left: 50%;
|
|
2532
|
+
display: inline-block;
|
|
2530
2533
|
width: 38%;
|
|
2531
2534
|
height: 38%;
|
|
2535
|
+
transform: translate(-50%, -50%);
|
|
2532
2536
|
border-radius: 50%;
|
|
2533
2537
|
background: var(--dc-color-picker-btn-check-color);
|
|
2534
2538
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|