Checkbox
@@ -1040,6 +1109,8 @@
import checkbox from "@/ux-components/checkbox/checkbox";
import radio from "@/ux-components/radio/radio";
import textLink from "@/ux-components/text-link/text-link";
+ import textboxQuestion from "@/common-components/textbox-question/textbox-question";
+ import dropdownQuestion from "@/common-components/dropdown-question/dropdown-question";
export default {
name: "App",
components: {
@@ -1051,7 +1122,9 @@
listButtonHorizontal,
checkbox,
radio,
- textLink
+ textLink,
+ textboxQuestion,
+ dropdownQuestion,
},
data() {
return {
diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss
index 4b9a18114..670591d11 100644
--- a/src/styles/common-error-styles.scss
+++ b/src/styles/common-error-styles.scss
@@ -32,6 +32,19 @@
border: 1px solid $blue;
}
}
+ &.textbox-question,
+ &.dropdown-question {
+ p {
+ color: $red;
+ }
+ input,
+ select {
+ border: 1px solid $red;
+ &:focus {
+ border: 1px solid transparent;
+ }
+ }
+ }
}
.form-test-error {