Skip to content

Commit

Permalink
Fix border radii on validation messages
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnCuppens committed Oct 22, 2020
1 parent f02bd6e commit 91b4c2c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scss/forms/_input-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,12 @@
}
}

> :not(:first-child):not(.dropdown-menu) {
$validation-messages: "";
@each $state in map-keys($form-validation-states) {
$validation-messages: $validation-messages + ":not(." + unquote($state) + "-tooltip)" + ":not(." + unquote($state) + "-feedback)";
}

> :not(:first-child):not(.dropdown-menu)#{$validation-messages} {
margin-left: -$input-border-width;
@include border-left-radius(0);
}
Expand Down

0 comments on commit 91b4c2c

Please sign in to comment.