@occmundial/occ-atomic 2.0.0-beta.5 → 2.0.0-beta.6

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [2.0.0-beta.6](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.5...v2.0.0-beta.6) (2024-04-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Force padding of 0 in ghostPink button ([778ef27](https://github.com/occmundial/occ-atomic/commit/778ef27301183f43ace721b625582c14c353009b))
7
+
1
8
  # [2.0.0-beta.5](https://github.com/occmundial/occ-atomic/compare/v2.0.0-beta.4...v2.0.0-beta.5) (2024-04-19)
2
9
 
3
10
 
@@ -97,8 +97,14 @@ Object {
97
97
  "background": "transparent",
98
98
  "border": "none",
99
99
  "color": "#f13465",
100
- "paddingLeft": 0,
101
- "paddingRight": 0,
100
+ "paddingLeft": Array [
101
+ 0,
102
+ "!important",
103
+ ],
104
+ "paddingRight": Array [
105
+ 0,
106
+ "!important",
107
+ ],
102
108
  },
103
109
  "ghostWhite": Object {
104
110
  "& i": Object {
@@ -220,8 +220,8 @@ var _default = {
220
220
  background: 'transparent',
221
221
  color: sec,
222
222
  border: 'none',
223
- paddingLeft: 0,
224
- paddingRight: 0,
223
+ paddingLeft: [0, '!important'],
224
+ paddingRight: [0, '!important'],
225
225
  '&:hover, &:active': {
226
226
  color: secDark,
227
227
  '& i': {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@occmundial/occ-atomic",
3
- "version": "2.0.0-beta.5",
3
+ "version": "2.0.0-beta.6",
4
4
  "description": "Collection of shareable styled React components for OCC applications.",
5
5
  "homepage": "http://occmundial.github.io/occ-atomic",
6
6
  "main": "build/index.js",