@lumx/core 3.9.8-alpha.0 → 3.9.8-alpha.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/package.json CHANGED
@@ -40,7 +40,7 @@
40
40
  "update-version-changelog": "yarn version-changelog ../../CHANGELOG.md"
41
41
  },
42
42
  "sideEffects": false,
43
- "version": "3.9.8-alpha.0",
43
+ "version": "3.9.8-alpha.1",
44
44
  "devDependencies": {
45
45
  "@babel/core": "^7.18.13",
46
46
  "@babel/plugin-proposal-class-properties": "^7.18.6",
@@ -158,14 +158,18 @@
158
158
  .#{$lumx-base-prefix}-button {
159
159
  // Remove border radius on the right on the first button (if not hidden and not also the last button)
160
160
  &:not(:last-of-type:not(.visually-hidden)) {
161
- border-top-right-radius: 0 !important;
162
- border-bottom-right-radius: 0 !important;
161
+ &, &::before {
162
+ border-top-right-radius: 0;
163
+ border-bottom-right-radius: 0;
164
+ }
163
165
  }
164
166
 
165
167
  // Remove border radius on the left on the last button (if not hidden and not also the first button)
166
168
  &:not(:first-of-type:not(.visually-hidden)) {
167
- border-top-left-radius: 0 !important;
168
- border-bottom-left-radius: 0 !important;
169
+ &, &::before {
170
+ border-top-left-radius: 0;
171
+ border-bottom-left-radius: 0;
172
+ }
169
173
  }
170
174
  }
171
175
  }