diff --git a/jest.config.js b/jest.config.js index 0749f4f71..839db4378 100644 --- a/jest.config.js +++ b/jest.config.js @@ -34,7 +34,7 @@ module.exports = { testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"], coverageThreshold: { global: { - statements: 85, + statements: 84, // Got the go ahead from Mark to temporarily lower this. Taking out initialize component made the year,make,model and style coverage drop a bit. Once unit tests for license plate lookup, vin lookup and address lookup are in the coverage should go back up to 90 }, }, diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss index 587900512..95985f7c4 100644 --- a/src/styles/common-error-styles.scss +++ b/src/styles/common-error-styles.scss @@ -88,12 +88,14 @@ html { border: 1px solid $gray-500; input:not(:focus) { + label { + border: none; box-shadow: 0 0 0 1px $gray-500; border-radius: .5rem; } } input:checked:focus { + label { + border: none; box-shadow: 0 0 0 2.5px $blue; border-radius: .5rem; }