From 77155e669f16753c53d2bb81e415cc984d4f9432 Mon Sep 17 00:00:00 2001 From: Angelene Manalo Date: Wed, 12 Jul 2023 20:20:39 -0700 Subject: [PATCH 1/5] updated scss to only target h2 on privacy policy page --- _sass/components/_privacy-policy.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/_sass/components/_privacy-policy.scss b/_sass/components/_privacy-policy.scss index 76afdf6f32..917aa15e3c 100644 --- a/_sass/components/_privacy-policy.scss +++ b/_sass/components/_privacy-policy.scss @@ -49,8 +49,10 @@ .page-card--privacy-policy { padding: 36px 57px; } - h2 { - margin-top: 48px; + .content-section--privacy-policy { + h2 { + margin-top: 48px; + } } } From 2d477f6e0a377bb56dec6921b568029c96e94db1 Mon Sep 17 00:00:00 2001 From: Angelene Manalo Date: Wed, 19 Jul 2023 08:56:02 -0700 Subject: [PATCH 2/5] updated stylelintrc per reviewer request --- .stylelintrc.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.stylelintrc.json b/.stylelintrc.json index 36d6eff24c..659315f513 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -1,5 +1,9 @@ { + "plugins": [ + "stylelint-scss" + ], "rules": { + "scss/at-rule-no-unknown": true, "color-no-invalid-hex": true, "unit-no-unknown": true, "property-no-unknown": true, From 51b33be0db1825c379bec8b84001ede97dc6bc86 Mon Sep 17 00:00:00 2001 From: Angelene Manalo Date: Wed, 19 Jul 2023 09:13:15 -0700 Subject: [PATCH 3/5] updated stylelintrc to extend scss config --- .stylelintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.stylelintrc.json b/.stylelintrc.json index 659315f513..943b3eff0c 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -2,6 +2,7 @@ "plugins": [ "stylelint-scss" ], + "extends": "stylelint-config-standard-scss", "rules": { "scss/at-rule-no-unknown": true, "color-no-invalid-hex": true, From 13a55b8def5a71402d030e62dd52f99bcbcea822 Mon Sep 17 00:00:00 2001 From: Angelene Manalo Date: Wed, 19 Jul 2023 09:41:34 -0700 Subject: [PATCH 4/5] removed scss config from stylelintrc --- .stylelintrc.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index 943b3eff0c..659315f513 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -2,7 +2,6 @@ "plugins": [ "stylelint-scss" ], - "extends": "stylelint-config-standard-scss", "rules": { "scss/at-rule-no-unknown": true, "color-no-invalid-hex": true, From bb9ae14c16d7abc3730124fe97d7ad3c809744b3 Mon Sep 17 00:00:00 2001 From: angelene Date: Wed, 19 Jul 2023 15:08:44 -0700 Subject: [PATCH 5/5] Remove changes to .stylelintrc.json --- .stylelintrc.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index 659315f513..36d6eff24c 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -1,9 +1,5 @@ { - "plugins": [ - "stylelint-scss" - ], "rules": { - "scss/at-rule-no-unknown": true, "color-no-invalid-hex": true, "unit-no-unknown": true, "property-no-unknown": true,