diff --git a/src/digital-components/dropdown-question/dropdown-question.vue b/src/digital-components/dropdown-question/dropdown-question.vue
index 55636eef..0a25d34b 100644
--- a/src/digital-components/dropdown-question/dropdown-question.vue
+++ b/src/digital-components/dropdown-question/dropdown-question.vue
@@ -146,7 +146,7 @@ export default {
background-size: 0.625rem 1rem;
color: $gray-600;
border-radius: $border-radius;
- min-height: 3rem;
+ min-height: 2.8125rem;
letter-spacing: inherit;
box-shadow: $box-shadow-input;
&:focus,
diff --git a/src/iss-components/address-questions/address-questions.vue b/src/iss-components/address-questions/address-questions.vue
index fd18db94..a5ffd559 100644
--- a/src/iss-components/address-questions/address-questions.vue
+++ b/src/iss-components/address-questions/address-questions.vue
@@ -12,8 +12,7 @@
hasIcon
disableAutoFill
validationRules="street-address-required"
- @keydown.enter.prevent
- class="mb-4" />
+ @keydown.enter.prevent />
+ inputId="streetAddress2Field" />
-
+
+ validationRules="city-required" />
-
+
+ validationRules="state-required" />
+ validationRules="zip-code-required|zip-code-format" />
@@ -362,3 +357,12 @@ export default {
}
};
+
+
diff --git a/src/layouts/policy-holder-details/policy-holder-details.vue b/src/layouts/policy-holder-details/policy-holder-details.vue
index 08ef0dc7..95b8be47 100644
--- a/src/layouts/policy-holder-details/policy-holder-details.vue
+++ b/src/layouts/policy-holder-details/policy-holder-details.vue
@@ -14,7 +14,7 @@
id="sub-header"
cmsWidgetName="SiteSubHeaderWidget"
class="mt-4" />
-
+
-
-
+
+
-
+
+ disableAutoFill />
diff --git a/src/styles/common-styles.scss b/src/styles/common-styles.scss
index 4f01dc5a..c5861ac9 100644
--- a/src/styles/common-styles.scss
+++ b/src/styles/common-styles.scss
@@ -22,44 +22,6 @@ body {
flex-direction: column;
padding: 0 1.5rem;
}
-
- // Set max-width on columns to prevent overly-wide
- // components on extra wide screens.
- .col-md-6 {
- max-width: 472px;
-
- @include media-breakpoint-up(xl) {
- max-width: 708px;
- }
-
- .col {
- max-width: 236px;
-
- &.one-list-card-width {
- max-width: 472px;
-
- @include media-breakpoint-up(xl) {
- max-width: 66.6666666%;
- }
- }
- }
-
- .shop-question {
- .col {
- max-width: 472px;
- }
- }
- }
-
- .col-xl-4 {
- max-width: 472px;
-
- .col {
- max-width: 100%;
- }
- }
-
- //END set max-width on columns
}
.pointer {
@@ -156,6 +118,10 @@ body {
width: 46.25rem; // 740px
}
+ @include media-breakpoint-up(lg) {
+ width: 60rem; // 960px
+ }
+
@include media-breakpoint-up(xl) {
width: 63.75rem; // 1020px
}
@@ -166,7 +132,7 @@ body {
width: 100%;
}
- @include media-breakpoint-up(md) {
+ @include media-breakpoint-up(lg) {
width: 58.33333333%;
}
}
diff --git a/src/styles/ux-variables.scss b/src/styles/ux-variables.scss
index fdec0bf1..31c55c03 100644
--- a/src/styles/ux-variables.scss
+++ b/src/styles/ux-variables.scss
@@ -194,7 +194,9 @@ $spacers: (
//Bootstrap Grid Breakpoints - Use these breakpoints only
$grid-breakpoints: (
xs: 0,
+ sm: 576px,
md: 768px,
+ lg: 992px,
xl: 1200px,
xxl: 1440px,
);