Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 1 | .form-text { |
| 2 | margin-top: -$spacer / 4; |
| 3 | margin-bottom: $spacer / 2; |
| 4 | color: $gray-800; |
| 5 | } |
| 6 | |
| 7 | .col-form-label { |
| 8 | color: $gray-800; |
| 9 | font-size: 14px; |
| 10 | } |
| 11 | |
| 12 | .form-group { |
| 13 | margin-bottom: $spacer * 2; |
| 14 | } |
| 15 | |
| 16 | .custom-select, |
| 17 | .custom-control-label, |
| 18 | .form-control { |
| 19 | //important needed to override validation colors on radio labels |
Dixsie Wolmers | 8048c9a | 2020-02-19 18:39:31 -0600 | [diff] [blame] | 20 | color: $gray-900 !important; |
| 21 | font-size: 16px; |
| 22 | border-color: $gray-400 !important; |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 23 | &.is-invalid, |
| 24 | &:invalid { |
Dixsie Wolmers | 8048c9a | 2020-02-19 18:39:31 -0600 | [diff] [blame] | 25 | border-bottom: 2px solid $danger !important; |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 26 | } |
Dixsie Wolmers | 8048c9a | 2020-02-19 18:39:31 -0600 | [diff] [blame] | 27 | } |