control error display for options input component
This commit is contained in:
dandds
2018-11-08 11:43:29 -05:00
committed by GitHub
3 changed files with 34 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;
}
}
}