mod-base 1.0.73-beta.2 → 1.0.73-beta.3

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,7 +1,7 @@
1
1
  # Changelog
2
2
 
3
3
  ## 1.0.73
4
- - Fix hero content box-shadow not being removed in dark mode when form-in-progress is active on mobile.
4
+ - Fix hero content box-shadow not being removed in dark mode when form-in-progress is active on mobile, and adding featured block image box shadow in dark mode styles
5
5
 
6
6
  ## 1.0.72
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.73-beta.2",
3
+ "version": "1.0.73-beta.3",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -57,6 +57,8 @@ $contact-us-blue-light: #8498E7;
57
57
  $color-btn: null,
58
58
  $color-btn-text: null,
59
59
  $checkbox-label-color: null,
60
+ // featured block
61
+ $featured-block-img-box-shadow: null,
60
62
  $footer-background: $color-charcoal9,
61
63
  $foreground: $color-grey-300,
62
64
  $form-input-border-color: null,
@@ -341,6 +343,12 @@ $contact-us-blue-light: #8498E7;
341
343
  filter: $background-img-brightness;
342
344
  }
343
345
 
346
+ @if $featured-block-img-box-shadow != null {
347
+ .featured-block__media img {
348
+ box-shadow: $featured-block-img-box-shadow;
349
+ }
350
+ }
351
+
344
352
  .header__logo img,
345
353
  .header__logo svg {
346
354
  filter: $logo-filter;