mod-base 1.0.54 → 1.0.55

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.55
4
+
5
+ - Adjusting a bug with the review stars (`background-color` was set instead of `color` which was adding a box around the stars).
6
+
3
7
  ## 1.0.54
4
8
 
5
9
  - Adding dark mode styles for the new `result` accessible component.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.54",
3
+ "version": "1.0.55",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -425,7 +425,7 @@ $contact-us-blue-light: #8498E7;
425
425
 
426
426
  .star-rating__stars {
427
427
  &::before {
428
- background-color: $color-grey-800;
428
+ color: $color-grey-800;
429
429
  }
430
430
  }
431
431
  }