control error display for options input component

This commit is contained in:
dandds
2018-11-06 15:27:42 -05:00
parent c8b9840dc6
commit 89e613d445
3 changed files with 31 additions and 13 deletions

View File

@@ -46,13 +46,13 @@
fieldset {
input[type='radio'] {
+ label::before {
box-shadow: 0 0 0 1px $color-white, 0 0 0 3px $color-red;
box-shadow: 0 0 0 1px $color-white, 0 0 0 3px $state-color;
}
}
input[type='checkbox'] {
+ label::before {
box-shadow: 0 0 0 2px $color-red;
box-shadow: 0 0 0 2px $state-color;
}
}
}