diff --git a/.eslintrc.js b/.eslintrc.js index 4e42a29f..aa0da332 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -6,7 +6,9 @@ module.exports = { rules: { 'linebreak-style': 'off', 'vue/component-definition-name-casing': ['warn', 'kebab-case'], - 'vue/require-default-prop': 'off' + 'vue/require-default-prop': 'off', + 'vue/attribute-hyphenation': ['warn', 'never'], + 'vue/v-on-event-hyphenation': ['warn', 'never'] }, settings: { 'import/resolver': { diff --git a/src/layouts/vin-lookup/vin-location-information/vin-location-information.vue b/src/layouts/vin-lookup/vin-location-information/vin-location-information.vue index e0c39296..93d78c50 100644 --- a/src/layouts/vin-lookup/vin-location-information/vin-location-information.vue +++ b/src/layouts/vin-lookup/vin-location-information/vin-location-information.vue @@ -1,12 +1,12 @@ diff --git a/src/layouts/vin-lookup/vin-lookup-alerts/vehicle-not-matched-alert/vehicle-not-matched-alert.vue b/src/layouts/vin-lookup/vin-lookup-alerts/vehicle-not-matched-alert/vehicle-not-matched-alert.vue index 631a1bc6..7a10a8e9 100644 --- a/src/layouts/vin-lookup/vin-lookup-alerts/vehicle-not-matched-alert/vehicle-not-matched-alert.vue +++ b/src/layouts/vin-lookup/vin-lookup-alerts/vehicle-not-matched-alert/vehicle-not-matched-alert.vue @@ -1,20 +1,20 @@ + diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss index 05575e71..5314138e 100644 --- a/src/styles/common-error-styles.scss +++ b/src/styles/common-error-styles.scss @@ -161,20 +161,20 @@ html { } .form-test-invalid { - &.btn.btn-primary { - color: $gray-600; - background: $gray-200; - cursor: pointer; - pointer-events: all; - font-weight: $font-weight-normal; - } - &.btn.btn-primary:hover { - background: $gray-200; - box-shadow: none; - } - &.btn.btn-primary:focus, - &.btn.btn-primary:focus-visible { - box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $blue-700; - } - } + &.btn.btn-primary { + color: $gray-600; + background: $gray-200; + cursor: pointer; + pointer-events: all; + font-weight: $font-weight-normal; + } + &.btn.btn-primary:hover, + &.btn.btn-primary:focus { + background: $gray-200; + box-shadow: none; + } + &.btn.btn-primary:focus-visible { + box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $gray-700; + } +} } diff --git a/src/ux-components/button-main/button-main.vue b/src/ux-components/button-main/button-main.vue index d4804e62..5f1fb535 100644 --- a/src/ux-components/button-main/button-main.vue +++ b/src/ux-components/button-main/button-main.vue @@ -1,7 +1,7 @@