From 10a3efe1261c583312ff651c83f816a113aba73a Mon Sep 17 00:00:00 2001
From: Rodrigo <rogomezpalacio@protonmail.com>
Date: Mon, 19 Apr 2021 19:08:22 -0500
Subject: [PATCH 1/2] Revert reset style property changes

Reverts other style properties to their original values

Border inheritance was causing unwanted borders being set around slidedown elements on some sites
---
 src/stylesheets/reset.scss | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/stylesheets/reset.scss b/src/stylesheets/reset.scss
index 9765469f5..27d2074df 100755
--- a/src/stylesheets/reset.scss
+++ b/src/stylesheets/reset.scss
@@ -29,14 +29,18 @@
     background-image: none ; /* This rule affects the use of pngfix JavaScript http://dillerdesign.com/experiment/DD_BelatedPNG for IE6, which is used to force the browser to recognise alpha-transparent PNGs files that replace the IE6 lack of PNG transparency. (The rule overrides the VML image that is used to replace the given CSS background-image). If you don't know what that means, then you probably haven't used the pngfix script, and this comment may be ignored :) */
     background-position: 0 0 ;
     background-repeat: repeat ;
-    border: inherit;
+    border-color: black ;
+    border-color: currentColor ; /* `border-color` should match font color. Modern browsers (incl. IE9) allow the use of "currentColor" to match the current font 'color' value <http://www.w3.org/TR/css3-color/#currentcolor>. For older browsers, a default of 'black' is given before this rule. Guideline to support older browsers: if you haven't already declared a border-color for an element, be sure to do so, e.g. when you first declare the border-width. */
+    border-radius: 0 ;
+    border-style: none ;
+    border-width: medium ;
     bottom: auto ;
     clear: none ;
     clip: auto ;
     color: inherit ;
     counter-increment: none ;
     counter-reset: none ;
-    cursor: inherit ;
+    cursor: auto ;
     direction: inherit ;
     display: inline ;
     float: none ;
@@ -72,7 +76,7 @@
     unicode-bidi: normal ;
     vertical-align: baseline ;
     visibility: inherit ;
-    white-space: inherit ;
+    white-space: normal ;
     width: auto ;
     word-spacing: normal ;
     z-index: auto ;

From 0fcd64d011083b35fc3762369aa251c64026a88e Mon Sep 17 00:00:00 2001
From: Rodrigo <rogomezpalacio@protonmail.com>
Date: Mon, 19 Apr 2021 19:09:22 -0500
Subject: [PATCH 2/2] 151402 Release Commit

---
 package.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package.json b/package.json
index 01ef4b9db..94cf50fd3 100644
--- a/package.json
+++ b/package.json
@@ -37,7 +37,7 @@
     "build:dev-stag": "./build/scripts/build.sh -f development -t staging"
   },
   "config": {
-    "sdkVersion": "151401"
+    "sdkVersion": "151402"
   },
   "repository": {
     "type": "git",