cherry-styled-components 0.1.0-7 → 0.1.0-8
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/dist/cherry.js +4 -0
- package/dist/cherry.umd.cjs +4 -0
- package/package.json +1 -1
- package/src/lib/select.tsx +4 -0
package/dist/cherry.js
CHANGED
|
@@ -3700,6 +3700,10 @@ const ea = H.select`
|
|
|
3700
3700
|
pointer-events: none;
|
|
3701
3701
|
}
|
|
3702
3702
|
|
|
3703
|
+
& select {
|
|
3704
|
+
padding-right: 40px;
|
|
3705
|
+
}
|
|
3706
|
+
|
|
3703
3707
|
& select:active:not([disabled]) ~ svg,
|
|
3704
3708
|
& select:focus:not([disabled]) ~ svg {
|
|
3705
3709
|
transform: translateY(-50%) rotate(180deg);
|
package/dist/cherry.umd.cjs
CHANGED
package/package.json
CHANGED
package/src/lib/select.tsx
CHANGED
|
@@ -100,6 +100,10 @@ export const StyledIconWrapper = styled.span<SelectProps>`
|
|
|
100
100
|
pointer-events: none;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
+
& select {
|
|
104
|
+
padding-right: 40px;
|
|
105
|
+
}
|
|
106
|
+
|
|
103
107
|
& select:active:not([disabled]) ~ svg,
|
|
104
108
|
& select:focus:not([disabled]) ~ svg {
|
|
105
109
|
transform: translateY(-50%) rotate(180deg);
|