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 |
| 20 | color: $gray-900!important; |
| 21 | border-color: $gray-400!important; |
| 22 | &::before { |
| 23 | border-color: $primary; |
| 24 | } |
| 25 | &.is-invalid, |
| 26 | &:invalid { |
| 27 | border-bottom: 2px solid $danger!important; |
| 28 | } |
| 29 | } |